diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2007-07-30 22:14:29 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2007-07-30 22:14:29 +0000 |
| commit | d3233d4aa3d508e1408aabd797168044cc84983f (patch) | |
| tree | efe40365d9205baf5aa58397ffcff806b5cce4cf /lib | |
| parent | 2064d7e3aa64f6901ef03f20961ca5a267409904 (diff) | |
| download | enigma2-d3233d4aa3d508e1408aabd797168044cc84983f.tar.gz enigma2-d3233d4aa3d508e1408aabd797168044cc84983f.zip | |
fix fillSimilarList
Diffstat (limited to 'lib')
| -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 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 |
