diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-06-06 00:20:22 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-06-06 00:20:22 +0000 |
| commit | dfbcb708c0620005c929f447ff7140c45f8f4e2a (patch) | |
| tree | 46310c1b4ab04df4425b4742202e3502faeceac8 /lib/python/Components/MovieList.py | |
| parent | a7245fd6ecdfcf08f1347c0d319dd9003a14a1e9 (diff) | |
| download | enigma2-dfbcb708c0620005c929f447ff7140c45f8f4e2a.tar.gz enigma2-dfbcb708c0620005c929f447ff7140c45f8f4e2a.zip | |
fix movielist sort bug, by Tero Mannninen
Diffstat (limited to 'lib/python/Components/MovieList.py')
| -rw-r--r-- | lib/python/Components/MovieList.py | 2 |
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 |
