mirror of https://github.com/containers/podman.git
Merge pull request #4365 from cevich/safe_load
Cirrus: Fix minor python deprecation warning
This commit is contained in:
commit
9ba8dae0bf
|
|
@ -34,7 +34,7 @@ guard-%:
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
%.json: %.yml
|
%.json: %.yml
|
||||||
@python3 -c 'import json,yaml; json.dump( yaml.load(open("$<").read()), open("$@","w"), indent=2);'
|
@python3 -c 'import json,yaml; json.dump( yaml.safe_load(open("$<").read()), open("$@","w"), indent=2);'
|
||||||
|
|
||||||
${PACKER_DIST_FILENAME}:
|
${PACKER_DIST_FILENAME}:
|
||||||
@curl -L --silent --show-error \
|
@curl -L --silent --show-error \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue