Merge "Fix use of yaml.load()"

This commit is contained in:
Zuul
2021-10-22 12:00:35 +00:00
committed by Gerrit Code Review

View File

@@ -65,7 +65,7 @@ class UpdateCloudsYaml(object):
def _read_clouds(self):
try:
with open(self._clouds_path) as clouds_file:
self._clouds = yaml.load(clouds_file)
self._clouds = yaml.safe_load(clouds_file)
except IOError:
# The user doesn't have a clouds.yaml file.
print("The user clouds.yaml file didn't exist.")