aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-20 12:59:31 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-20 12:59:31 +0000
commit094ce8fe71fe874774ba9ade2801ae4069333b96 (patch)
treebccd916a2b2464aa44b6c177e0a78850d18c652e /lib/python/Plugins
parent37b576593006124e0419b4c4663889b5de307e9b (diff)
downloadenigma2-094ce8fe71fe874774ba9ade2801ae4069333b96.tar.gz
enigma2-094ce8fe71fe874774ba9ade2801ae4069333b96.zip
fix bluescreen when try to store a position in rotor
Diffstat (limited to 'lib/python/Plugins')
-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 afdb6b6e..4a14ba57 100644
--- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py
@@ -233,8 +233,8 @@ class PositionerSetup(Screen):
print "stepping west"
self.diseqccommand("moveWest", 0xFF) # one step
elif entry == "storage":
- print "store at position", (self.positioner_storage.value + 1)
- self.diseqccommand("store", self.positioner_storage.value + 1)
+ print "store at position", int(self.positioner_storage.value)
+ self.diseqccommand("store", int(self.positioner_storage.value)
elif entry == "limits":
self.diseqccommand("limitWest")