summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--waitress/tests/test_task.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/waitress/tests/test_task.py b/waitress/tests/test_task.py
index 6045bf7..982384b 100644
--- a/waitress/tests/test_task.py
+++ b/waitress/tests/test_task.py
@@ -1555,5 +1555,5 @@ class DummyLogger(object):
def warning(self, msg, *args):
self.logged.append(msg % args)
- def exception(self, msg):
- self.logged.append(msg)
+ def exception(self, msg, *args):
+ self.logged.append(msg % args)