From e6483d20a5500e86b5fa4e7da63f911641b7e9dd Mon Sep 17 00:00:00 2001 From: kali Date: Thu, 30 Aug 2012 01:11:42 +0900 Subject: fix config load method it was not updating config dict --- src/leap/base/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/leap/base') 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 -- cgit v1.2.3