diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py | 4 |
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") # |
