diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-09-29 22:08:57 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-09-29 22:08:57 +0000 |
| commit | 2dc9b0cb83069aaed4dbb3f45b3d15835568d0d9 (patch) | |
| tree | 22c11dcc553644cc99c0b8d355317916a08abc36 /lib/python/Components/MovieList.py | |
| parent | 2a6cdce89409dc0275e23523c3807972a82f2cf7 (diff) | |
| download | enigma2-2dc9b0cb83069aaed4dbb3f45b3d15835568d0d9.tar.gz enigma2-2dc9b0cb83069aaed4dbb3f45b3d15835568d0d9.zip | |
follow changes
Diffstat (limited to 'lib/python/Components/MovieList.py')
| -rw-r--r-- | lib/python/Components/MovieList.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index 003302b3..5b07791f 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -83,9 +83,8 @@ class MovieList(HTMLComponent, GUIComponent): movieList = [ ] while 1: - s = eServiceReference() - if list.getNext(s): - del s + s = list.getNext() + if not s.valid(): del list break movieList.append(s) |
