aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-11-16 11:12:37 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-11-16 11:12:37 +0000
commit3ff9ec2869649c38251899fc0fbe9c651a061dfc (patch)
tree8151e6275aebc7ae766697109d4a0f6aa6e0ae07 /lib/python
parentaceb62aeebc259a4da520b303a31a6a174d9400a (diff)
downloadenigma2-3ff9ec2869649c38251899fc0fbe9c651a061dfc.tar.gz
enigma2-3ff9ec2869649c38251899fc0fbe9c651a061dfc.zip
fix automatic scan
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ServiceScan.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ServiceScan.py b/lib/python/Screens/ServiceScan.py
index c1059539..17b7da75 100644
--- a/lib/python/Screens/ServiceScan.py
+++ b/lib/python/Screens/ServiceScan.py
@@ -13,14 +13,14 @@ class ServiceScan(Screen):
def cancel(self):
self.close()
- def __init__(self, session, transponders):
+ def __init__(self, session, transponders, flags):
Screen.__init__(self, session)
self.session.nav.stopService()
self["scan_progress"] = ProgressBar()
self["scan_state"] = Label("scan state")
- self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders)
+ self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders, flags)
self["actions"] = ActionMap(["OkCancelActions"],
{