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 5955906 commit d4c8277
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dev/scripts.commnunity/fix_social_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@

if galaxy_user_by_unverified_email:
print(f'\tfound user by unverified email: {galaxy_user_by_unverified_email.username}')
print(f'\t\t{galaxy_user_by_unverified_email}')
print(f'\t\t\tusername:{galaxy_user_by_unverified_email.username}')
print(f'\t\t\temail:{galaxy_user_by_unverified_email.email}')
if galaxy_user_by_unverified_name:
print(f'\tfound user by unverified username: {galaxy_user_by_unverified_name.username}')
print(f'\t\t{galaxy_user_by_unverified_name}')
print(f'\t\t\tusername:{galaxy_user_by_unverified_name.username}')
print(f'\t\t\temail:{galaxy_user_by_unverified_name.email}')

#import epdb; epdb.st()

0 comments on commit d4c8277

Please sign in to comment.