mirror of
https://github.com/basicswap/basicswap.git
synced 2025-05-06 21:02:15 +00:00
Remove debug
This commit is contained in:
parent
d1e05acd18
commit
ba5e110682
1 changed files with 1 additions and 3 deletions
|
@ -6,13 +6,11 @@ def page_quickswaps(handler, url_split, post_string):
|
||||||
messages = []
|
messages = []
|
||||||
err_messages = []
|
err_messages = []
|
||||||
form_data = handler.checkForm(post_string, "quickswaps", messages)
|
form_data = handler.checkForm(post_string, "quickswaps", messages)
|
||||||
|
|
||||||
if form_data:
|
if form_data:
|
||||||
try:
|
try:
|
||||||
pass
|
pass
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
if swap_client.debug:
|
|
||||||
swap_client.log.error(traceback.format_exc())
|
|
||||||
err_messages.append(str(e))
|
err_messages.append(str(e))
|
||||||
|
|
||||||
template = handler.server.env.get_template("quickswaps.html")
|
template = handler.server.env.get_template("quickswaps.html")
|
||||||
|
|
Loading…
Reference in a new issue