diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-29 22:31:40 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-06-29 22:31:40 +0000 |
| commit | f9ac4210fa12ea7399e2b129aae9532aa6fbfc2e (patch) | |
| tree | e55edd802ba6261baef790a2f3855a1fcce6d0ad /lib | |
| parent | 51d1d57abb876d78807d95e0aa9ce3dd56e5f259 (diff) | |
| download | enigma2-f9ac4210fa12ea7399e2b129aae9532aa6fbfc2e.tar.gz enigma2-f9ac4210fa12ea7399e2b129aae9532aa6fbfc2e.zip | |
fix diseqc repeats
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/NimManager.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index 5f5ae7bf..ac81c624 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -251,11 +251,11 @@ class SecConfigure: if currentConfigSelectionElement(currLnb.diseqcRepeats) == "none": sec.setRepeats(0) - elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "One": + elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "one": sec.setRepeats(1) - elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "Two": + elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "two": sec.setRepeats(2) - elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "Three": + elif currentConfigSelectionElement(currLnb.diseqcRepeats) == "three": sec.setRepeats(3) setCommandOrder=False |
