Merge "Remove deprecation warning from docs build"

This commit is contained in:
Zuul 2020-08-14 10:58:49 +00:00 committed by Gerrit Code Review
commit ebad41890b
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class SIGTable(Table):
LOG.info('loading sigtable')
LOG.info('reading %s' % filename)
with open(filename, 'r') as f:
_teams_yaml = yaml.load(f.read())
_teams_yaml = yaml.safe_load(f.read())
table = nodes.table()