aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-28 17:00:49 +0100
committerGravatar jesopo2018-09-28 17:01:00 +0100
commitfe1b479b2cd8ab760da80413355e89a773bc156a (patch)
tree162c4904f7047653e3b9e4839cc028f37d2e3bae /src
parentFix find_prefix functions in Database.py ('%s%' -> '%s%%') (diff)
signature
Add missing 'self' to args of Timer.finish()
Diffstat (limited to 'src')
-rw-r--r--src/Timers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Timers.py b/src/Timers.py
index d3a297df..7b595847 100644
--- a/src/Timers.py
+++ b/src/Timers.py
@@ -22,7 +22,7 @@ class Timer(object):
def redo(self):
self._done = False
self.set_next_due()
- def finish():
+ def finish(self):
self._done = True
def done(self):
return self._done