summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-07-11 05:11:34 +0100
committerLars Wirzenius <liw@liw.fi>2012-07-11 05:11:34 +0100
commit1ea53e3efe4991ade06ac0ba349206f4143139aa (patch)
treebcd174a2d45dbc4011f31cbb3bb21723fc329ebb
parent2b649c24e43d9e171e15238f07e14f79d446a0bb (diff)
downloadttystatus-1ea53e3efe4991ade06ac0ba349206f4143139aa.tar.gz
Fix DummyNotify to accept keyword argument
-rw-r--r--ttystatus/status_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttystatus/status_tests.py b/ttystatus/status_tests.py
index daba040..6c24a6c 100644
--- a/ttystatus/status_tests.py
+++ b/ttystatus/status_tests.py
@@ -37,7 +37,7 @@ class DummyMessager(object):
def write(self, string):
self.written.write(string)
- def notify(self, string, f):
+ def notify(self, string, f, force=False):
pass
def finish(self):