diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-06-30 13:53:16 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-06-30 13:53:16 +0000 |
| commit | 8cd13c62bc7aa6ebf41f1047d9d1621f9cd0df83 (patch) | |
| tree | 3cf9c20e69e9dabf9b1471b45584c5a84eae9a49 /lib/python/Screens/ScanSetup.py | |
| parent | 837603df980045d844ae367292b21d749913ae96 (diff) | |
| download | enigma2-8cd13c62bc7aa6ebf41f1047d9d1621f9cd0df83.tar.gz enigma2-8cd13c62bc7aa6ebf41f1047d9d1621f9cd0df83.zip | |
fix for manually scanning a transponder with 8psk modulation
Diffstat (limited to 'lib/python/Screens/ScanSetup.py')
| -rw-r--r-- | lib/python/Screens/ScanSetup.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py index a94645b1..9236fe5f 100644 --- a/lib/python/Screens/ScanSetup.py +++ b/lib/python/Screens/ScanSetup.py @@ -440,7 +440,7 @@ class ScanSetup(Screen): } def addSatTransponder(self, tlist, frequency, symbol_rate, polarisation, fec, inversion, orbital_position, system, modulation): - print "Add Sat: frequ: " + str(frequency) + " symbol: " + str(symbol_rate) + " pol: " + str(polarisation) + " fec: " + str(fec) + " inversion: " + str(inversion) + print "Add Sat: frequ: " + str(frequency) + " symbol: " + str(symbol_rate) + " pol: " + str(polarisation) + " fec: " + str(self.fecmap[fec]) + " inversion: " + str(inversion) + " modulation: " + str(modulation) + " system: " + str(system) print "orbpos: " + str(orbital_position) parm = eDVBFrontendParametersSatellite() if modulation == 1: @@ -499,7 +499,7 @@ class ScanSetup(Screen): config.scan.sat.inversion.value, orbpos, config.scan.sat.system.value, - config.scan.sat.modulation) + config.scan.sat.modulation.value) elif currentConfigSelectionElement(config.scan.type) == "single_satellite": sat = self.satList[config.scan.nims.value][config.scan.satselection[config.scan.nims.value].value] getInitialTransponderList(tlist, int(sat[1])) |
