aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2011-03-21 18:14:28 +0100
committerghost <andreas.monzner@multimedia-labs.de>2011-03-21 18:14:42 +0100
commit0a860f49e476ccb2d921f6292cd528e490072718 (patch)
treef30a7f635099661621df5d042a7aa3d2de5822d2 /lib/python/Screens
parent10f779bd487379e0a9aec80e586c562e2ac71273 (diff)
downloadenigma2-0a860f49e476ccb2d921f6292cd528e490072718.tar.gz
enigma2-0a860f49e476ccb2d921f6292cd528e490072718.zip
TimerEdit.py: fix typo ... this fixes a crash on timer listing with "show finished timers at end of list"
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/TimerEdit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py
index e9a73ac1..d540b6de 100644
--- a/lib/python/Screens/TimerEdit.py
+++ b/lib/python/Screens/TimerEdit.py
@@ -177,7 +177,7 @@ class TimerEditList(Screen):
def eol_compare(x, y):
if x[0].state != y[0].state and x[0].state == RealTimerEntry.StateEnded or y[0].state == RealTimerEntry.StateEnded:
return cmp(x[0].state, y[0].state)
- return cmp(x[0].begin, x[1].begin)
+ return cmp(x[0].begin, y[0].begin)
list = self.list
del list[:]