diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-10-25 16:35:50 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-10-25 16:35:50 +0000 |
| commit | aa08b13bdb747f08cb3be5d7549f275eca7a0114 (patch) | |
| tree | 9d82e3130cc51ad58fbde45a0ab27136bfad094b /lib/python/Components | |
| parent | 70a1e41a08a2ba28c40ffe39be6fb02f6d126b07 (diff) | |
| download | enigma2-aa08b13bdb747f08cb3be5d7549f275eca7a0114.tar.gz enigma2-aa08b13bdb747f08cb3be5d7549f275eca7a0114.zip | |
small fix
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/EpgList.py | 2 |
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: |
