From: ghost Date: Sun, 21 Dec 2008 10:11:47 +0000 (+0100) Subject: fix death screen in some conditions X-Git-Tag: 2.6.0~528 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13?ds=sidebyside fix death screen in some conditions del fakeRec doesnt work, when the fakeRecList was empty thx to adenin --- diff --git a/lib/python/Components/TimerSanityCheck.py b/lib/python/Components/TimerSanityCheck.py index 031c9cae..10dc31bd 100644 --- a/lib/python/Components/TimerSanityCheck.py +++ b/lib/python/Components/TimerSanityCheck.py @@ -200,7 +200,7 @@ class TimerSanityCheck: if timer == fakeRec[0] and fakeRec[1]: NavigationInstance.instance.stopRecordService(fakeRec[1]) fakeRecList.remove(fakeRec) - del fakeRec + fakeRec = None for entry in overlaplist: if entry[1] == timer: overlaplist.remove(entry)