diff options
Diffstat (limited to 'func')
-rw-r--r-- | func/env_setup.py | 2 | ||||
-rw-r--r-- | func/spawn_vm.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/func/env_setup.py b/func/env_setup.py index 96f984cb..3697f235 100644 --- a/func/env_setup.py +++ b/func/env_setup.py @@ -174,7 +174,7 @@ class Env_setup: def parse(self, config_file_path): try: f_name = open(config_file_path, 'r+') - doc = yaml.load(f_name) + doc = yaml.safe_load(f_name) f_name.close() if doc['Scenario']['benchmark']: self.benchmark = doc['Scenario']['benchmark'] diff --git a/func/spawn_vm.py b/func/spawn_vm.py index 15c26861..5710308b 100644 --- a/func/spawn_vm.py +++ b/func/spawn_vm.py @@ -65,7 +65,7 @@ class SpawnVM(Env_setup): Heat_Dic = {}
try:
with open('./heat/SampleHeat.yaml', 'r+') as H_temp:
- Heat_Dic = yaml.load(H_temp)
+ Heat_Dic = yaml.safe_load(H_temp)
except yaml.YAMLError as exc:
if hasattr(exc, 'problem_mark'):
mark = exc.problem_mark
|