aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-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 e5df6304..c1059539 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):
+ def __init__(self, session, transponders):
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"])
+ self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders)
self["actions"] = ActionMap(["OkCancelActions"],
{