aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Timers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Timers.py b/src/Timers.py
index ec2d98e5..7da23f01 100644
--- a/src/Timers.py
+++ b/src/Timers.py
@@ -69,6 +69,7 @@ class Timers(object):
for timer in self.timers[:]:
if timer.due():
timer.finish()
- self.events.on("timer.%s" % timer.name, timer=timer)
+ self.events.on("timer.%s" % timer.name).call(timer=timer,
+ **timer.kwargs)
if timer.done():
self._remove(timer)