From 713b210b4df4b4bf71dfdb7de0094631b1c92c91 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Tue, 8 Nov 2005 22:31:04 +0000 Subject: [PATCH] fix typo to make current timercode work again --- timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer.py b/timer.py index ff23b70..1679a9b 100644 --- a/timer.py +++ b/timer.py @@ -62,7 +62,7 @@ class Timer: bisect.insort(self.timer_list, entry) self.calcNextActivation() else: - bisect.insort(self.process_timers, entry) + bisect.insort(self.processed_timers, entry) def setNextActivation(self, when): delay = int((when - time.time()) * 1000) -- 2.7.4