python: Fixed async module bug.
[ashd.git] / python3 / ashd / async.py
index 4247bd6..e30f858 100644 (file)
@@ -26,7 +26,7 @@ class epoller(object):
     def exception(self, ch, *exc):
         self.remove(ch)
         if self.exc_handler is None:
-            traceback.print_exception(exc)
+            traceback.print_exception(*exc)
         else:
             self.exc_handler(ch, *exc)