diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-03 15:01:49 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-03 15:01:49 +0000 |
| commit | b7bc48591d6c61ba70cf68cd1d356c6abb1d9f2e (patch) | |
| tree | e8d110fd86f27c41bd5cb531ddca1f7022bdf8b6 /lib/python/Components | |
| parent | a80c8953ab5dafd0eb96b9cc19f8c5cb84dcd8e2 (diff) | |
| download | enigma2-b7bc48591d6c61ba70cf68cd1d356c6abb1d9f2e.tar.gz enigma2-b7bc48591d6c61ba70cf68cd1d356c6abb1d9f2e.zip | |
fix
Diffstat (limited to 'lib/python/Components')
| -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 2a3cd910..3b7e7e36 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -61,7 +61,7 @@ class MovieList(HTMLComponent, GUIComponent): def getCurrent(self): l = self.l.getCurrentSelection() - return l or l[0] + return l and l[0] def GUIcreate(self, parent): self.instance = eListbox(parent) |
