aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-09-21 10:38:44 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-09-21 10:38:44 +0200
commit0fa0646e9d874dc905a26551557902b2fc12d79e (patch)
treeaaf78a8fe7467ed2ae6eb188ca9b7fa8dbdf5d33 /lib/python/Components/config.py
parentd169bb4690ed7f65fe9de5327bf5f4908552a262 (diff)
downloadenigma2-0fa0646e9d874dc905a26551557902b2fc12d79e.tar.gz
enigma2-0fa0646e9d874dc905a26551557902b2fc12d79e.zip
lib/python/Components/config.py: fix bug (thx to adenin)
Diffstat (limited to 'lib/python/Components/config.py')
-rwxr-xr-xlib/python/Components/config.py2
1 files changed, 1 insertions, 1 deletions
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)