From 7f2b4f4768792a8245b998812e7cb16678eb4ffb Mon Sep 17 00:00:00 2001 From: ghost Date: Tue, 30 Jun 2009 09:32:48 +0200 Subject: [PATCH] NimManager.py: fix not working "Tuner Equal to" option in complex tuner configurations --- lib/python/Components/NimManager.py | 4 ++-- 1 file 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) -- 2.30.2