fix goto stored pos
[enigma2.git] / lib / python / Plugins / SystemPlugins / PositionerSetup / plugin.py
index e4c4dc4beba007360958a39c1bb135629a581564..bd1b4d10b5ac615f6ba60005748a71220050e2ec 100644 (file)
@@ -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")
 #