diff options
Diffstat (limited to 'deploy')
-rwxr-xr-x | deploy/get_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/get_conf.py b/deploy/get_conf.py index 37cacb51..31ccaca0 100755 --- a/deploy/get_conf.py +++ b/deploy/get_conf.py @@ -13,7 +13,7 @@ import yaml def init(file): with open(file) as fd: - return yaml.load(fd) + return yaml.safe_load(fd) def networkdecorator(func): |