summaryrefslogtreecommitdiffstats
path: root/deploy/get_conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'deploy/get_conf.py')
-rwxr-xr-xdeploy/get_conf.py2
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):