summaryrefslogtreecommitdiff
path: root/service/test
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2015-06-17 09:18:12 -0300
committerVictor Shyba <victor.shyba@gmail.com>2015-06-17 09:18:12 -0300
commit7718e546173928dcf4b86da9cd55ee6e05017cac (patch)
tree22f630c177fdfdee756a9f94e1905ab75879fc41 /service/test
parent8df54482cbbd0f14d10dbf19262624253256dafa (diff)
clean up unused variables (flake8 violations)
Diffstat (limited to 'service/test')
-rw-r--r--service/test/support/dispatcher/proxy.py2
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()