aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-15 15:16:44 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-15 15:16:44 +0000
commite131b75fd194db84a37f2395b5ab88093e09192f (patch)
tree2ad993c50979729a2c4aa5aada7e5622ef07ad35 /lib/python
parent87eae1f45beed2e62f0760a6f0b0ccf5d0f65617 (diff)
downloadenigma2-e131b75fd194db84a37f2395b5ab88093e09192f.tar.gz
enigma2-e131b75fd194db84a37f2395b5ab88093e09192f.zip
fix config entries not existing at all time
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index d4a52799..df1bd6c0 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -836,17 +836,17 @@ class ChannelSelectionBase(Screen):
HISTORYSIZE = 20
+#config for lastservice
+config.tv = ConfigSubsection();
+config.tv.lastservice = configElement("config.tv.lastservice", configText, "", 0);
+config.tv.lastroot = configElement("config.tv.lastroot", configText, "", 0);
+
class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit, ChannelSelectionEPG):
def __init__(self, session):
ChannelSelectionBase.__init__(self,session)
ChannelSelectionEdit.__init__(self)
ChannelSelectionEPG.__init__(self)
- #config for lastservice
- config.tv = ConfigSubsection();
- config.tv.lastservice = configElement("config.tv.lastservice", configText, "", 0);
- config.tv.lastroot = configElement("config.tv.lastroot", configText, "", 0);
-
self["actions"] = ActionMap(["OkCancelActions"],
{
"cancel": self.cancel,