changed YAML load to FullLoader to make it WIndows-compatible

This commit is contained in:
k4yt3x 2019-11-16 02:52:33 -05:00
parent 954233c238
commit d503325a62

View File

@ -201,7 +201,7 @@ def read_config(config_file: pathlib.Path) -> dict:
"""
with open(config_file, 'r') as config:
return yaml.load(config, Loader=yaml.CLoader)
return yaml.load(config, Loader=yaml.FullLoader)
def absolutify_paths(config):