aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TimerEdit.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2011-03-21 18:44:23 +0100
committerghost <andreas.monzner@multimedia-labs.de>2011-03-21 18:44:23 +0100
commitbb5c1975bf166af673b6d62bd6b9ce2c419c25ab (patch)
treea25916d432759c8859cc942424cb000935b98743 /lib/python/Screens/TimerEdit.py
parent61111fab026bb61d70ffcf74c36e51da56aa7ad2 (diff)
parent0a860f49e476ccb2d921f6292cd528e490072718 (diff)
downloadenigma2-3.1.0.tar.gz
enigma2-3.1.0.zip
Merge branch 'bug_713_fix_timerlist_sort' into 3.13.1.0
Diffstat (limited to 'lib/python/Screens/TimerEdit.py')
-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 8f742b8c..0abb42a8 100644
--- a/lib/python/Screens/TimerEdit.py
+++ b/lib/python/Screens/TimerEdit.py
@@ -179,7 +179,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[:]