From d6ad0917d57b21e6886f384ed6c0b0d3d948ae9e Mon Sep 17 00:00:00 2001 From: Bert JW Regeer Date: Tue, 2 Apr 2019 21:59:04 -0600 Subject: DummyLogger did not accept multiple args --- waitress/tests/test_task.py | 4 ++-- 1 file 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) -- cgit v1.2.1