diff --git a/bin/deploy_meta.py b/bin/deploy_meta.py index 5eef282..e741f05 100644 --- a/bin/deploy_meta.py +++ b/bin/deploy_meta.py @@ -276,7 +276,9 @@ class DeployMeta(QMainWindow): path_config_full = os.path.join( self.path_templates, self.CONFIG_TYPES[configname]) - configuration_file = yaml.load(open(path_config_full, 'r')) + print("path_config_full: %s" % path_config_full) + + configuration_file = yaml.safe_load(open(path_config_full, 'r')) return configuration_file def store_config(self):