diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-06-17 09:18:12 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-06-17 09:18:12 -0300 |
commit | 7718e546173928dcf4b86da9cd55ee6e05017cac (patch) | |
tree | 22f630c177fdfdee756a9f94e1905ab75879fc41 /service/test/support/dispatcher | |
parent | 8df54482cbbd0f14d10dbf19262624253256dafa (diff) |
clean up unused variables (flake8 violations)
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() |