aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-27 23:30:01 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-01-27 23:30:01 +0100
commitc372fb3326e2c8386eb34723ea7cf354642aaa99 (patch)
tree5fca528bc97eb567f025a13418ae27a8300249a3 /lib/python/Screens
parente9412ee5133233df673d5a2b9f43fa2675a7526c (diff)
downloadenigma2-c372fb3326e2c8386eb34723ea7cf354642aaa99.tar.gz
enigma2-c372fb3326e2c8386eb34723ea7cf354642aaa99.zip
ChannelSelection.py: another small fix for bug #420
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/ChannelSelection.py2
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