aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/EpgList.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-10-25 16:35:50 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-10-25 16:35:50 +0000
commitaa08b13bdb747f08cb3be5d7549f275eca7a0114 (patch)
tree9d82e3130cc51ad58fbde45a0ab27136bfad094b /lib/python/Components/EpgList.py
parent70a1e41a08a2ba28c40ffe39be6fb02f6d126b07 (diff)
downloadenigma2-aa08b13bdb747f08cb3be5d7549f275eca7a0114.tar.gz
enigma2-aa08b13bdb747f08cb3be5d7549f275eca7a0114.zip
small fix
Diffstat (limited to 'lib/python/Components/EpgList.py')
-rw-r--r--lib/python/Components/EpgList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py
index 52fd9190..0c4290d6 100644
--- a/lib/python/Components/EpgList.py
+++ b/lib/python/Components/EpgList.py
@@ -232,7 +232,7 @@ class EPGList(HTMLComponent, GUIComponent):
if len(self.list):
if type == 1:
event_id = self.getSelectedEventId()
- self.list.sort(key=lambda x: (x[4].lower(), x[2]))
+ self.list.sort(key=lambda x: (x[4] and x[4].lower(), x[2]))
self.l.setList(self.list)
self.moveToEventId(event_id)
else: