aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-19 00:40:18 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-19 00:40:18 +0000
commit348578ef7c073083779ddbb25c9e1c69d8405f46 (patch)
tree163c36f3ed730a4fc024bfb20331ed6059eb6559 /lib/python/Components
parentd5ae449f27358e66e0f6e4fcb529f14a45a11441 (diff)
downloadenigma2-348578ef7c073083779ddbb25c9e1c69d8405f46.tar.gz
enigma2-348578ef7c073083779ddbb25c9e1c69d8405f46.zip
fix without any effect
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/NimManager.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 933ebcf7..c8b4adbe 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -128,6 +128,8 @@ class NimManager:
if (name == "sat"):
#print "found sat " + attrs.get('name',"") + " " + str(attrs.get('position',""))
tpos = attrs.get('position',"")
+ if tpos < 0:
+ tpos = 3600 + tpos
tname = attrs.get('name',"")
self.satellites[tpos] = tname
self.satList.append( (tname, tpos) )