diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-30 09:32:48 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-06-30 09:32:48 +0200 |
| commit | 7f2b4f4768792a8245b998812e7cb16678eb4ffb (patch) | |
| tree | aa373a223de3e84fb63d368b34d9e31f548f65fa /lib/python/Components/NimManager.py | |
| parent | 35403704d9aee1e5d322e2fa59a90d8fb2a32c91 (diff) | |
| download | enigma2-7f2b4f4768792a8245b998812e7cb16678eb4ffb.tar.gz enigma2-7f2b4f4768792a8245b998812e7cb16678eb4ffb.zip | |
NimManager.py: fix not working "Tuner Equal to" option in complex tuner configurations
Diffstat (limited to 'lib/python/Components/NimManager.py')
| -rw-r--r-- | lib/python/Components/NimManager.py | 4 |
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) |
