summaryrefslogtreecommitdiff
path: root/service/test/support/dispatcher
diff options
context:
space:
mode:
authorLeonardo Schäffer <leonardo.schaffer@gmail.com>2015-06-25 11:20:44 -0300
committerLeonardo Schäffer <leonardo.schaffer@gmail.com>2015-06-25 11:20:44 -0300
commit42f31aa607750eb7c00224e7c1c353b27cbd7519 (patch)
tree4bbfae731c8427c526f22bacb9136e5ed3e69d8c /service/test/support/dispatcher
parent7f349abe67b8e1a71798478f6c26b08773f2d869 (diff)
parent0b179c61043a9854fa23b8fd40fd252864ecd021 (diff)
Merge branch 'master' into floatlabel_for_compose
Diffstat (limited to 'service/test/support/dispatcher')
-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()