diff --git a/weboob/modules.py b/weboob/modules.py index f51fad18..c36ff038 100644 --- a/weboob/modules.py +++ b/weboob/modules.py @@ -99,7 +99,7 @@ class BackendsConfig(object): config = SafeConfigParser() config.read(self.confpath) for name in config.sections(): - params = dict(config.items(name)) + params = dict(config.items(name, raw=True)) try: yield name, params.pop('_type'), params except KeyError: