diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-12 12:57:06 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2008-12-12 12:57:06 +0100 |
| commit | 8b4f1cfcb506d144cd637b71ee02592324c2e562 (patch) | |
| tree | f12c1a671a1e2046fb079af5cc20355a239c15cb /lib/python/Plugins/SystemPlugins/Satfinder | |
| parent | 74fd4c361824405e95670254a6a98356f16c04c4 (diff) | |
| download | enigma2-8b4f1cfcb506d144cd637b71ee02592324c2e562.tar.gz enigma2-8b4f1cfcb506d144cd637b71ee02592324c2e562.zip | |
small cleanup
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Satfinder')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Satfinder/plugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py index c0522eb3..d61c1503 100644 --- a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py +++ b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py @@ -167,7 +167,7 @@ class Satfinder(ScanSetup): l = len(tps) if l > self.tuning_transponder.index: transponder = tps[self.tuning_transponder.index] - returnvalue = (int(transponder[1] / 1000), int(transponder[2] / 1000), + returnvalue = (transponder[1] / 1000, transponder[2] / 1000, transponder[3], transponder[4], 2, satpos, transponder[5], transponder[6], transponder[8], transponder[9]) self.tune(returnvalue) |
