diff options
author | kali <kali@leap.se> | 2012-08-30 01:11:42 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-08-30 01:20:37 +0900 |
commit | e6483d20a5500e86b5fa4e7da63f911641b7e9dd (patch) | |
tree | b1b2d07c1f105dad103f8fc8302d70ce50e4817f /src/leap/base/config.py | |
parent | 1263cd7a3cfca81ae3e6976a489e2d3d4013d64b (diff) |
fix config load method
it was not updating config dict
Diffstat (limited to 'src/leap/base/config.py')
-rw-r--r-- | src/leap/base/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/base/config.py b/src/leap/base/config.py index c7871f22..45a5f08a 100644 --- a/src/leap/base/config.py +++ b/src/leap/base/config.py @@ -127,7 +127,7 @@ class JSONLeapConfig(BaseLeapConfig): if fromfile is None: fromfile = self.filename - self._config.deserialize(fromfile) + self._config.config = self._config.deserialize(fromfile) def get_config(self): return self._config.config |