load backends config's values in raw
This commit is contained in:
parent
098c96c58f
commit
11cfc1d68b
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class BackendsConfig(object):
|
||||||
config = SafeConfigParser()
|
config = SafeConfigParser()
|
||||||
config.read(self.confpath)
|
config.read(self.confpath)
|
||||||
for name in config.sections():
|
for name in config.sections():
|
||||||
params = dict(config.items(name))
|
params = dict(config.items(name, raw=True))
|
||||||
try:
|
try:
|
||||||
yield name, params.pop('_type'), params
|
yield name, params.pop('_type'), params
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue