diff options
Diffstat (limited to 'service/test/support/dispatcher')
-rw-r--r-- | service/test/support/dispatcher/proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/dispatcher/proxy.py b/service/test/support/dispatcher/proxy.py index d4cb95ee..ca3bbc41 100644 --- a/service/test/support/dispatcher/proxy.py +++ b/service/test/support/dispatcher/proxy.py @@ -87,7 +87,7 @@ class MainHandler(tornado.web.RequestHandler): except tornado.httpclient.HTTPError, x: if hasattr(x, 'response') and x.response: self.handle_response(x.response) - except Exception, e: + except Exception: self.set_status(500) self.write("Internal server error:\n" + ''.join(traceback.format_exception(*sys.exc_info()))) self.finish() |