mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-14 20:48:09 +00:00
sw/pulp-runtime: Fix yaml loader regression
This commit is contained in:
parent
b6daa819ca
commit
b5e8fff0fa
1 changed files with 1 additions and 1 deletions
|
|
@ -246,7 +246,7 @@ the pyyaml library which is not installed.""",
|
|||
file=sys.stderr)
|
||||
exit(1)
|
||||
with open(args.test_file) as f:
|
||||
testyaml = yaml.load(f)
|
||||
testyaml = yaml.safe_load(f)
|
||||
for testsetname, testv in testyaml.items():
|
||||
for testname, insn in testv.items():
|
||||
cmd = shlex.split(insn['command'])
|
||||
|
|
|
|||
Loading…
Reference in a new issue