aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 8cd78712..1795d426 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -47,7 +47,7 @@ class configFile:
fileHandle.close()
-class configBoolean:
+class configSelection:
def __init__(self, parent):
self.parent = parent
@@ -186,7 +186,7 @@ class configElement:
def datafromFile(self, control, data):
if control == ConfigSlider:
return int(data);
- elif control == configBoolean:
+ elif control == configSelection:
return int(data);
elif control == configSequence:
list = [ ]
@@ -200,7 +200,7 @@ class configElement:
def datatoFile(self, control, data):
if control == ConfigSlider:
return str(data);
- elif control == configBoolean:
+ elif control == configSelection:
return str(data);
elif control == configSequence:
value = ""