aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/NimManager.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-11-27 01:03:23 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-11-27 01:03:23 +0000
commitdc6d1cf177e2d72829720075f236d8eef990fd34 (patch)
treebbcb6388e2527af7b7d8f8b6beb8d66e50907145 /lib/python/Components/NimManager.py
parent8130c81bb660aa3b036754279d720107b845cfea (diff)
downloadenigma2-dc6d1cf177e2d72829720075f236d8eef990fd34.tar.gz
enigma2-dc6d1cf177e2d72829720075f236d8eef990fd34.zip
default to 'complete' scan on DVB-C until problems with invalid NITs are fixed - better slow than not working
Diffstat (limited to 'lib/python/Components/NimManager.py')
-rw-r--r--lib/python/Components/NimManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 18c09b6e..5140406d 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -421,7 +421,7 @@ class NimManager:
return self.cablesList[0]
def getCableTrustNit(self, nim):
- return (config.Nims[nim].cabletype.value == "quick")
+ return config.Nims[nim].cabletype.value == "quick"
def getTerrestrialDescription(self, nim):
return self.terrestrialsList[config.Nims[nim].terrestrial.index][0]
@@ -794,7 +794,7 @@ def InitNimManager(nimmgr):
nim.advanced.lnb[x].powerThreshold = ConfigInteger(default=50, limits=(0, 100))
elif slot.nimType == nimmgr.nimType["DVB-C"]:
- nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))])
+ nim.cabletype = ConfigSelection(choices = [("quick", _("Quick")), ("complete", _("Complete"))], default = "complete")
elif slot.nimType == nimmgr.nimType["DVB-T"]:
list = []
n = 0