fix typo to make current timercode work again
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Tue, 8 Nov 2005 22:31:04 +0000 (22:31 +0000)
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>
Tue, 8 Nov 2005 22:31:04 +0000 (22:31 +0000)
timer.py

index ff23b70..1679a9b 100644 (file)
--- 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)