diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-21 11:11:47 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-21 11:11:47 +0100 |
| commit | 24ec7ceb4ddd2749c60716f35f3f01ba0e2fcc13 (patch) | |
| tree | c19c840191c7ef7e64e1a86a08f2f3ba492cd891 /lib/python | |
| parent | baa574e9f08994953da1110eb16fe7aad63c280f (diff) | |
| download | enigma2-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')
| -rw-r--r-- | lib/python/Components/TimerSanityCheck.py | 2 |
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) |
