From 4aa179b316688261d40fbb29a4b0532ed10ac983 Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Fri, 27 Oct 2006 22:09:53 +0000 Subject: [PATCH 1/1] fix goto stored pos --- lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py | 4 ++-- 1 file 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") # -- 2.30.2