Update to use pyyaml safe_load(), as load() is unsafe and disabled on some systems

This commit is contained in:
Justin Vieira 2019-05-29 11:21:20 -04:00
parent 52719c0b7d
commit 91ff83e506
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@ Dmytro Katyukha
Gerard Marull-Paretas
Hark
Joel Lehtonen
Justin Vieira
kennedy
Kristi
ldos

View File

@ -38,7 +38,7 @@ else:
if full_load:
logger.debug('Loading and pickling capabilities')
with open(capabilities_path) as cp, open(pickle_path, 'wb') as pp:
CAPABILITIES = yaml.load(cp)
CAPABILITIES = yaml.safe_load(cp)
pickle.dump(CAPABILITIES, pp, protocol=2)
logger.debug('Finished loading capabilities took %.2fs', time.time() - t0)