aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/TimerSanityCheck.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-12-21 11:11:47 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-12-21 11:11:47 +0100
commit24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13 (patch)
treec19c840191c7ef7e64e1a86a08f2f3ba492cd891 /lib/python/Components/TimerSanityCheck.py
parentbaa574e9f08994953da1110eb16fe7aad63c280f (diff)
downloadenigma2-24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13.tar.gz
enigma2-24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13.zip
fix death screen in some conditions
del fakeRec doesnt work, when the fakeRecList was empty thx to adenin
Diffstat (limited to 'lib/python/Components/TimerSanityCheck.py')
-rw-r--r--lib/python/Components/TimerSanityCheck.py2
1 files changed, 1 insertions, 1 deletions
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)