From: ghost Date: Wed, 27 Jan 2010 22:30:01 +0000 (+0100) Subject: ChannelSelection.py: another small fix for bug #420 X-Git-Tag: 2.8.0~71 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/025acea46debca45f8ae004cdb17cc6e5fc84309?ds=sidebyside ChannelSelection.py: another small fix for bug #420 --- 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