# HG changeset patch # User Tuomo Valkonen # Date 1604084979 18000 # Node ID 8fe3cf6487f8cd15a5bdcff9745b23e2cfa5bec9 # Parent d5351f9fe8b8576818d72069490fe30b3a03b01e Fix YAML warning diff -r d5351f9fe8b8 -r 8fe3cf6487f8 borgend/config.py --- a/borgend/config.py Tue Apr 21 10:12:19 2020 -0500 +++ b/borgend/config.py Fri Oct 30 14:09:39 2020 -0500 @@ -155,7 +155,7 @@ logger.info("Reading configuration %s missing" % locations.cfgfile) with io.open(locations.cfgfile, 'r') as file: - settings=expand_env(yaml.load(file), os.environ); + settings=expand_env(yaml.load(file, Loader=yaml.FullLoader), os.environ); # # Verify basic settings