sorry, i REALLY don't know, how to fix it other than using a try/except block
[vuplus_dvbapp] / RecordTimer.py
index 62fa637..18cc64a 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.
-               self.processed_timers.remove(entry)
+               try:
+                       self.processed_timers.remove(entry)
+               except:
+                       pass
 
        def shutdown(self):
                self.saveTimer()