diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-11-27 01:03:23 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-11-27 01:03:23 +0000 |
| commit | dc6d1cf177e2d72829720075f236d8eef990fd34 (patch) | |
| tree | bbcb6388e2527af7b7d8f8b6beb8d66e50907145 /lib/python | |
| parent | 8130c81bb660aa3b036754279d720107b845cfea (diff) | |
| download | enigma2-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')
| -rw-r--r-- | lib/python/Components/NimManager.py | 4 |
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 |
