add config option 'Show blinking clock in display during recording'
[vuplus_dvbapp] / lib / python / Screens / TimerEntry.py
index 4f1d6d6..faf4f30 100644 (file)
@@ -343,7 +343,10 @@ class TimerLog(Screen):
                }, -1)
 
        def deleteEntry(self):
-               self.log_entries.remove(self["loglist"].getCurrent()[1])
+               cur = self["loglist"].getCurrent()
+               if cur is None:
+                       return 
+               self.log_entries.remove(cur[1])
                self.fillLogList()
                self["loglist"].l.setList(self.list)
                self.updateText()