aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-20 11:33:53 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-20 11:33:53 +0000
commit1daa5b67f948ba86ee6ca7a31035c8c00cbec226 (patch)
treed9d68613d2d99b92294889368a20709741166593 /lib/python/Components/config.py
parentd8af4688934f8c04f3dabe0b95d7840f4039542d (diff)
downloadenigma2-1daa5b67f948ba86ee6ca7a31035c8c00cbec226.tar.gz
enigma2-1daa5b67f948ba86ee6ca7a31035c8c00cbec226.zip
fix limits (typo)
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index a3537889..ad389a08 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -336,7 +336,7 @@ class ConfigSequence(ConfigElement):
max_pos += len(str(self.limits[num][1]))
while self._value[num] < self.limits[num][0]:
- self.value[num] += 1
+ self._value[num] += 1
while self._value[num] > self.limits[num][1]:
self._value[num] -= 1
@@ -622,7 +622,7 @@ class ConfigSatlist(ConfigSelection):
def __init__(self, list, default = None):
if default is not None:
default = str(default)
- ConfigSelection.__init__(self, choices = [(str(orbpos), desc) for (orbpos, desc) in list], default = default)
+ ConfigSelection.__init__(self, choices = [(str(orbpos), desc, flags) for (orbpos, desc, flags) in list], default = default)
def getOrbitalPosition(self):
if self.value == "":