aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-06-06 00:20:22 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-06-06 00:20:22 +0000
commitdfbcb708c0620005c929f447ff7140c45f8f4e2a (patch)
tree46310c1b4ab04df4425b4742202e3502faeceac8 /lib/python
parenta7245fd6ecdfcf08f1347c0d319dd9003a14a1e9 (diff)
downloadenigma2-dfbcb708c0620005c929f447ff7140c45f8f4e2a.tar.gz
enigma2-dfbcb708c0620005c929f447ff7140c45f8f4e2a.zip
fix movielist sort bug, by Tero Mannninen
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/MovieList.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py
index 07dd1152..a0bd7334 100644
--- a/lib/python/Components/MovieList.py
+++ b/lib/python/Components/MovieList.py
@@ -229,7 +229,7 @@ class MovieList(GUIComponent):
ref = x[0]
info = self.serviceHandler.info(ref)
name = info and info.getName(ref)
- return name and name.lower() or ""
+ return (name and name.lower() or "", -x[2])
def moveTo(self, serviceref):
count = 0