diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-04-30 00:26:47 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-04-30 00:26:47 +0000 |
| commit | afdb23adeccba916f1b17a5e643a43bb1699a365 (patch) | |
| tree | bc344de5163fe442c21e9d5a20f8789dab35bba2 /lib/python/Components/config.py | |
| parent | 417813b4955d2f48f708b3d114cab703bb5965f7 (diff) | |
| download | enigma2-afdb23adeccba916f1b17a5e643a43bb1699a365.tar.gz enigma2-afdb23adeccba916f1b17a5e643a43bb1699a365.zip | |
use e2 functions to merge config and services
Diffstat (limited to 'lib/python/Components/config.py')
| -rw-r--r-- | lib/python/Components/config.py | 4 |
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) |
