sorry, i REALLY don't know, how to fix it other than using a try/except block
[enigma2.git] / RecordTimer.py
index 62fa6370a336d289f7fa700d32a32ca5838c9706..18cc64ab4bd2be40b4f9de40df5a0c7dc8377b60 100644 (file)
@@ -177,7 +177,10 @@ class RecordTimer(timer.Timer):
                print "in processed: ", entry in self.processed_timers
                print "in running: ", entry in self.timer_list
                # now the timer should be in the processed_timers list. remove it from there.
                print "in processed: ", entry in self.processed_timers
                print "in running: ", entry in self.timer_list
                # now the timer should be in the processed_timers list. remove it from there.
-               self.processed_timers.remove(entry)
+               try:
+                       self.processed_timers.remove(entry)
+               except:
+                       pass
 
        def shutdown(self):
                self.saveTimer()
 
        def shutdown(self):
                self.saveTimer()