aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2008-12-12 12:57:06 +0100
committerghost <andreas.monzner@multimedia-labs.de>2008-12-12 12:57:06 +0100
commit8b4f1cfcb506d144cd637b71ee02592324c2e562 (patch)
treef12c1a671a1e2046fb079af5cc20355a239c15cb /lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
parent74fd4c361824405e95670254a6a98356f16c04c4 (diff)
downloadenigma2-8b4f1cfcb506d144cd637b71ee02592324c2e562.tar.gz
enigma2-8b4f1cfcb506d144cd637b71ee02592324c2e562.zip
small cleanup
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Satfinder/plugin.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/Satfinder/plugin.py2
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)