aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 13:07:39 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 13:07:39 +0000
commit3a84ca5e09502322c37bf9240006014f8b631b58 (patch)
tree4738efa85780d22e8bcb571805493ad6859a8a73 /lib/python
parent821ccfb0f496c4ac6eff51a2ec67749a565343bb (diff)
downloadenigma2-3a84ca5e09502322c37bf9240006014f8b631b58.tar.gz
enigma2-3a84ca5e09502322c37bf9240006014f8b631b58.zip
add: SimpleChannelSelection
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index 3ae46f74..890fd3e0 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -374,3 +374,10 @@ class ChannelSelection(Screen):
refstr = ""
config.tv.lastservice.value = refstr
config.tv.lastservice.save()
+
+class SimpleChannelSelection(ChannelSelection):
+ def __init__(self, session, args):
+ ChannelSelection.__init__(self, session)
+ self.args = args
+
+ \ No newline at end of file