From f9ac4210fa12ea7399e2b129aae9532aa6fbfc2e Mon Sep 17 00:00:00 2001 From: Andreas Monzner Date: Thu, 29 Jun 2006 22:31:40 +0000 Subject: [PATCH] fix diseqc repeats --- lib/python/Components/NimManager.py | 6 +++--- 1 file 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 -- 2.30.2