aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-30 11:26:23 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-30 11:26:23 +0000
commitab927305ad491e1e556932fb947836986457a636 (patch)
treee6183c0bd82b7938d83ec27d6c440398747b77f4 /lib/python/Components
parent3962cc04bac1fefc02f560a1812a8c5aeb9c00b3 (diff)
downloadenigma2-ab927305ad491e1e556932fb947836986457a636.tar.gz
enigma2-ab927305ad491e1e556932fb947836986457a636.zip
fix usals
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 38f58ce3..031144a9 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -101,7 +101,7 @@ class SecConfigure:
self.addLNBSimple(slotid = x, orbpos = int(nim.diseqcC.vals[nim.diseqcC.value][1]), toneburstmode = 0, diseqcmode = 1, diseqcpos = 2)
self.addLNBSimple(slotid = x, orbpos = int(nim.diseqcD.vals[nim.diseqcD.value][1]), toneburstmode = 0, diseqcmode = 1, diseqcpos = 3)
elif nim.diseqcMode.value == 4: #Positioner
- self.addLNBSimple(slotid = x, diseqcmode = 3, longitude = 0, loDirection = 0, latitude = 0, laDirection = 0)
+ self.addLNBSimple(slotid = x, diseqcmode = 3, longitude = float(str(nim.longitude.value[0]) + "." + str(nim.longitude.value[1])), loDirection = nim.longitudeOrientation.value - 2, latitude = float(str(nim.latitude.value[0]) + "." + str(nim.latitude.value[1])), laDirection = nim.latitudeOrientation.value)
pass
else: #advanced config
print "FIXME add support for advanced config"