NimManager.py: fix not working "Tuner Equal to" option in complex tuner configurations
authorghost <andreas.monzner@multimedia-labs.de>
Tue, 30 Jun 2009 07:32:48 +0000 (09:32 +0200)
committerghost <andreas.monzner@multimedia-labs.de>
Tue, 30 Jun 2009 07:32:48 +0000 (09:32 +0200)
lib/python/Components/NimManager.py

index c5b2f8db4aa9b2be37d6a8b0c4d55273f9d14ca3..c278213c6726029eb4e9869305a82c46cc97db25 100644 (file)
@@ -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)