Remove exception from output.
1 files changed, 1 insertions(+), 1 deletions(-) M app/routes.py
M app/routes.py => app/routes.py +1 -1
@@ 50,7 50,7 @@ def handle_json_error( raise except Exception as ex: return web.json_response( - {'status': 'failed', 'reason': str(ex)}, status=400 + {'status': 'failed'}, status=400 ) return handler