aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
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"],
{