From 0fa0646e9d874dc905a26551557902b2fc12d79e Mon Sep 17 00:00:00 2001 From: ghost Date: Mon, 21 Sep 2009 10:38:44 +0200 Subject: [PATCH] lib/python/Components/config.py: fix bug (thx to adenin) --- lib/python/Components/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 32e86272..e249caf4 100755 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -1494,7 +1494,7 @@ class ConfigSubDict(dict, object): self.stored_values = dict(values) for (key, val) in self.items(): if str(key) in self.stored_values: - val = self.stored_values[str(key)] + val.saved_value = self.stored_values[str(key)] saved_value = property(getSavedValue, setSavedValue) -- 2.30.2