Skip to content

Commit

Permalink
attempt to fix #1750
Browse files Browse the repository at this point in the history
  • Loading branch information
kltm committed Oct 22, 2021
1 parent 4ce452a commit fef04af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sanity-check-users-and-groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ def main():
## Read.
users = None
with open(args.users) as mhandle:
users = yaml.load(mhandle.read())
users = yaml.safe_load(mhandle.read())
groups_linear = None
with open(args.groups) as mhandle:
groups_linear = yaml.load(mhandle.read())
groups_linear = yaml.safe_load(mhandle.read())

## Switch linear groups to lookup by URI.
groups_lookup = {}
Expand Down

0 comments on commit fef04af

Please sign in to comment.