helplist: keys are not anymore secret, at least not for us professionals. skin fixed...
[enigma2.git] / timer.py
index 7855c0989b4cbd5b3160719c73ef2ccf80b86ab3..6f33b54d41d1039c8e3159e4686af95715019a52 100644 (file)
--- a/timer.py
+++ b/timer.py
@@ -146,11 +146,13 @@ class Timer:
                if w.state < TimerEntry.StateEnded:
                        bisect.insort(self.timer_list, w)
                else:
-                       bisect.insort(self.processed_timers, w)
                        if (w.repeated != 0):
                                w.processRepeated()
                                w.state = TimerEntry.StateWait
                                self.addTimerEntry(w)
+                       else:
+                               bisect.insort(self.processed_timers, w)
+
        
        def processActivation(self):
                t = int(time.time()) + 1