Commit 8a9960b4 authored by Denis Bilenko's avatar Denis Bilenko

use traceback.print_exc() instead of pass

parent af5aaa96
......@@ -465,7 +465,7 @@ class Greenlet(greenlet):
try:
sys.stderr.write('Failed to notify link %s of %r\n\n' % (getfuncname(link), self))
except:
pass
traceback.print_exc()
finally:
self._notifier = None
......
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