aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components')
-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 1bc98ef6..ee00ce9f 100644
--- a/lib/python/Components/EpgList.py
+++ b/lib/python/Components/EpgList.py
@@ -247,7 +247,7 @@ class EPGList(HTMLComponent, GUIComponent):
return
l = self.epgcache.search(('RIBND', 1024, eEPGCache.SIMILAR_BROADCASTINGS_SEARCH, refstr, event_id))
if l and len(l):
- l.sort(self.sort_func)
+ l.sort(key=lambda x: x[2])
self.l.setList(l)
self.selectionChanged()
print time() - t