aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-06-30 09:32:48 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-06-30 09:32:48 +0200
commit7f2b4f4768792a8245b998812e7cb16678eb4ffb (patch)
treeaa373a223de3e84fb63d368b34d9e31f548f65fa /lib/python
parent35403704d9aee1e5d322e2fa59a90d8fb2a32c91 (diff)
downloadenigma2-7f2b4f4768792a8245b998812e7cb16678eb4ffb.tar.gz
enigma2-7f2b4f4768792a8245b998812e7cb16678eb4ffb.zip
NimManager.py: fix not working "Tuner Equal to" option in complex tuner configurations
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/NimManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py
index c5b2f8db..c278213c 100644
--- a/lib/python/Components/NimManager.py
+++ b/lib/python/Components/NimManager.py
@@ -46,7 +46,7 @@ class SecConfigure:
if self.equal.has_key(slotid):
for slot in self.equal[slotid]:
tunermask |= (1 << slot)
- elif self.linked.has_key(slotid):
+ if self.linked.has_key(slotid):
for slot in self.linked[slotid]:
tunermask |= (1 << slot)
sec.setLNBSatCR(-1)
@@ -262,7 +262,7 @@ class SecConfigure:
if self.equal.has_key(slotid):
for slot in self.equal[slotid]:
tunermask |= (1 << slot)
- elif self.linked.has_key(slotid):
+ if self.linked.has_key(slotid):
for slot in self.linked[slotid]:
tunermask |= (1 << slot)