diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-24 19:57:34 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-24 19:57:34 +0000 |
| commit | 9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c (patch) | |
| tree | b4f1dd3eb5c32887a97c9db198f7ec71b5e82fc1 /lib/python | |
| parent | 5952c79690ef75a41bb6fba5629241ab39fee6a6 (diff) | |
| download | enigma2-9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c.tar.gz enigma2-9b4f2ccafd195174ea0c9846f4a8bafaf69c2b4c.zip | |
satposdepends is a list
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/NimManager.py | 3 |
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) |
