diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2006-04-24 17:52:12 +0000 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2006-04-24 17:52:12 +0000 |
| commit | 6e4fe9bcc4aeab419ca25ea8cf8dfe274a7868bd (patch) | |
| tree | 052344d900d1daa85c2e8265feec0b404f2d9d3f /lib/python/Screens | |
| parent | 579c467838c7b719ed557e97a6a0873715cfec78 (diff) | |
| download | enigma2-6e4fe9bcc4aeab419ca25ea8cf8dfe274a7868bd.tar.gz enigma2-6e4fe9bcc4aeab419ca25ea8cf8dfe274a7868bd.zip | |
fix automatic scan for DVB-T
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/ScanSetup.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py index e52f9f93..f007f6f2 100644 --- a/lib/python/Screens/ScanSetup.py +++ b/lib/python/Screens/ScanSetup.py @@ -112,12 +112,13 @@ def getInitialTerrestrialTransponderList(tlist, region): # FIXME: we need to convert the other parameters... # convert terrestrial.xml bandwidth to our enum - if x[2] in [0, 1]: - bandwidth = [1, 0][x[2]] - else: - bandwidth = 3 # auto - - parm = buildTerTransponder(x[1], bandwidth = [1, 0][x[2]]) + #if x[2] in [0, 1]: + # bandwidth = [1, 0][x[2]] + #else: + # bandwidth = 3 # auto + # + #parm = buildTerTransponder(x[1], bandwidth = [1, 0][x[2]]) + parm = buildTerTransponder(x[1], inversion = x[9], bandwidth = x[2]) tlist.append(parm) |
