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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 59fb7255..50103904 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -1005,10 +1005,10 @@ class ConfigSubsection(object):
values = dict(values)
self.content.stored_values = values
-
+
for (key, val) in self.content.items.items():
if key in values:
- val.setSavedValue(values[key])
+ val.saved_value = values[key]
saved_value = property(getSavedValue, setSavedValue)