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 25931a5 commit a09eda5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dev/scripts.commnunity/fix_social_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
if not galaxy_user_by_unverified_email and not galaxy_user_by_unverified_name:
continue

if galaxy_user_by_unverified_email.id == galaxy_user_by_unverified_name.id:
galaxy_user_by_unverified_name = None
if galaxy_user_by_unverified_email and galaxy_user_by_unverified_name:
if galaxy_user_by_unverified_email.id == galaxy_user_by_unverified_name.id:
galaxy_user_by_unverified_name = None

print(f'{sid}. {github_id}|{github_login} current:{current_username} current_email:{current_email}')

Expand Down

0 comments on commit a09eda5

Please sign in to comment.