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 ff23b70d91808960f201b67a89918201ea869fd1..1679a9b7835beeb795d74d2ec7a4aa30434d733d 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)