Commit cfc81ab7 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove binding for exception e. It's unused.

parent ddbbe977
...@@ -351,7 +351,7 @@ class Connection(smac.SizedMessageAsyncConnection): ...@@ -351,7 +351,7 @@ class Connection(smac.SizedMessageAsyncConnection):
def _pull_trigger(self, tryagain=10): def _pull_trigger(self, tryagain=10):
try: try:
self.trigger.pull_trigger() self.trigger.pull_trigger()
except OSError, e: except OSError:
self.trigger.close() self.trigger.close()
self.trigger = trigger() self.trigger = trigger()
if tryagain > 0: if tryagain > 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment