Skip to content

Commit

Permalink
Merge pull request #2049 from DrDaveD/fix-osg-notify-error
Browse files Browse the repository at this point in the history
Fix "dictionary changed size during iteration error"
  • Loading branch information
brianhlin committed Sep 20, 2021
2 parents 84352cd + 74a9b15 commit 3009aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/topology_utils.py
Expand Up @@ -342,7 +342,7 @@ def filter_contacts(args, results):

if args.contact_type != 'all':
# filter out undesired contact types
for name in results.keys():
for name in list(results.keys()):
contact_list = []
for contact in results[name]:
contact_type = contact['ContactType']
Expand Down

0 comments on commit 3009aee

Please sign in to comment.