aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-24 19:57:34 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-24 19:57:34 +0000
commit9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c (patch)
treeb4f1dd3eb5c32887a97c9db198f7ec71b5e82fc1
parent5952c79690ef75a41bb6fba5629241ab39fee6a6 (diff)
downloadenigma2-9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c.tar.gz
enigma2-9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c.zip
satposdepends is a list
-rw-r--r--lib/python/Components/NimManager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index 72303af7..5e66b6a6 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -71,7 +71,8 @@ class SecConfigure:
self.addSatellite(sec, orbpos)
elif (diseqcmode == 3): # diseqc 1.2
if self.satposdepends.has_key(slotid):
- tunermask |= (1 << self.satposdepends[slotid])
+ for slot in self.satposdepends[slotid]:
+ tunermask |= (1 << slot)
sec.setLatitude(latitude)
sec.setLaDirection(laDirection)
sec.setLongitude(longitude)