diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-27 23:30:01 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-27 23:30:18 +0100 |
| commit | 025acea46debca45f8ae004cdb17cc6e5fc84309 (patch) | |
| tree | 72d65a09b9ca1caa638b20043edc4652ca956195 | |
| parent | 79b95a25d1fd0d555b393dd5b9bac83b60432df6 (diff) | |
| download | enigma2-025acea46debca45f8ae004cdb17cc6e5fc84309.tar.gz enigma2-025acea46debca45f8ae004cdb17cc6e5fc84309.zip | |
ChannelSelection.py: another small fix for bug #420
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index eb03ee65..4ca6fa39 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -1467,7 +1467,7 @@ class ChannelSelectionRadio(ChannelSelectionBase, ChannelSelectionEdit, ChannelS config.radio.lastroot.save() def restoreRoot(self): - tmp = [x for x in self.lastroot.value.split(';') if x != ''] + tmp = [x for x in config.radio.lastroot.value.split(';') if x != ''] current = [x.toString() for x in self.servicePath] if tmp != current or self.rootChanged: cnt = 0 |
