Skip to content

Commit

Permalink
checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
jctanner committed Oct 4, 2023
1 parent 2c9cb67 commit 304fd8f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion dev/scripts.community/verify_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@
if not email.endswith('@GALAXY.GITHUB.UNVERIFIED.COM'):
continue

expected_github_id = int(email.replace('@GALAXY.GITHUB.UNVERIFIED.COM', ''))
expected_github_id = email.replace('@GALAXY.GITHUB.UNVERIFIED.COM', '')
if expected_github_id == 'None':
continue

expected_github_id = int(expected_github_id)

actual_github_id = umap.get(user.username)
if umap.get(user.username) != expected_github_id:
continue
Expand Down

0 comments on commit 304fd8f

Please sign in to comment.