Merge pull request #94 from hmatrjp/patch-1
update dbus-loader: Remove Loader from safe_load()
This commit is contained in:
commit
076d4df17c
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ def main():
|
|||
# Load and perform basic validation of config file.
|
||||
try:
|
||||
with (args.configpath / 'dbus-service.yaml').open(mode='rt') as configfd:
|
||||
config = yaml.safe_load(configfd, Loader=yaml.BaseLoader)
|
||||
config = yaml.safe_load(configfd)
|
||||
except FileNotFoundError:
|
||||
# No configuration file. Create default
|
||||
config = {'user_to_sid': {}}
|
||||
|
|
|
|||
Loading…
Reference in a new issue