aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-12-18 17:50:23 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-12-18 17:52:26 +0100
commit17815854118aa7187570e0e4492064f43a1b94b7 (patch)
treedce1a02106aa507138dba05bd24640f645702a46 /lib/python
parent3f5e4524feb024547cbf49610981904231b5cf9b (diff)
downloadenigma2-17815854118aa7187570e0e4492064f43a1b94b7.tar.gz
enigma2-17815854118aa7187570e0e4492064f43a1b94b7.zip
remove possibility to scan with "loopthrough" and "2nd cable from rotor" configured tuners
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ScanSetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py
index 464c701a..f32904a1 100644
--- a/lib/python/Screens/ScanSetup.py
+++ b/lib/python/Screens/ScanSetup.py
@@ -524,7 +524,7 @@ class ScanSetup(ConfigListScreen, Screen, CableTransponderSearchSupport):
nim_list = []
# collect all nims which are *not* set to "nothing"
for n in nimmanager.nim_slots:
- if n.config_mode != "nothing":
+ if not n.config_mode in ("loopthrough", "satposdepends", "nothing"):
nim_list.append((str(n.slot), n.friendly_full_description))
self.scan_nims = ConfigSelection(choices = nim_list)