Don't include disabled sections in the config

This commit is contained in:
Fabio Manganiello 2017-12-11 10:05:45 +01:00
parent b4c445ecec
commit 3b74ed2bb7
1 changed files with 5 additions and 2 deletions

View File

@ -118,6 +118,10 @@ def parse_config_file(config_file=None):
except FileNotFoundError as e:
pass
for section in config:
if 'disabled' in config[section] and config[section]['disabled']:
del config[section]
return config
@ -125,8 +129,7 @@ def get_backends(config):
backends = []
for k in config.keys():
if k.startswith('backend.') and (
'disabled' not in config[k] or not config[k]['disabled']):
if k.startswith('backend.'):
module = importlib.import_module(__package__ + '.' + k)
# e.g. backend.pushbullet main class: PushbulletBackend