aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/PositionerSetup
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-27 22:09:53 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-27 22:09:53 +0000
commit4aa179b316688261d40fbb29a4b0532ed10ac983 (patch)
treec87c9b0ebba531a629f54476cd623c6260e9bbad /lib/python/Plugins/SystemPlugins/PositionerSetup
parent5269c92e934374c44e770bfc2831a7164d3fefca (diff)
downloadenigma2-4aa179b316688261d40fbb29a4b0532ed10ac983.tar.gz
enigma2-4aa179b316688261d40fbb29a4b0532ed10ac983.zip
fix goto stored pos
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/PositionerSetup')
-rw-r--r--lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
index e4c4dc4b..bd1b4d10 100644
--- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
@@ -254,8 +254,8 @@ class PositionerSetup(Screen):
print "stepping east"
self.diseqccommand("moveEast", 0xFF) # one step
elif entry == "storage":
- print "move to position", (self.positioner_storage.value + 1)
- self.diseqccommand("moveTo", self.positioner_storage.value + 1)
+ print "move to position", int(self.positioner_storage.value)
+ self.diseqccommand("moveTo", int(self.positioner_storage.value)
elif entry == "limits":
self.diseqccommand("limitEast")
#