From dc6d1cf177e2d72829720075f236d8eef990fd34 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 27 Nov 2006 01:03:23 +0000 Subject: default to 'complete' scan on DVB-C until problems with invalid NITs are fixed - better slow than not working --- lib/python/Components/NimManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/python') 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 -- cgit v1.2.3