From 8963785b76b15436bbbf06a26fc1c560ee57496e Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Sun, 19 Jun 2016 03:03:16 +0200 Subject: [PATCH] python: Fixed async module bug. --- python3/ashd/async.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python3/ashd/async.py b/python3/ashd/async.py index 4247bd6..e30f858 100644 --- a/python3/ashd/async.py +++ b/python3/ashd/async.py @@ -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) -- 2.11.0