Skip to content

Commit

Permalink
Fixed error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
T145 committed Feb 18, 2024
1 parent 99880e7 commit e9b84bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/update-prizes-list.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async def get(domain, session):
print(f'NEW: {domain}')
return domain
except Exception as e:
print("Unable to get {} due to {}.".format(url, e.__class__))
print("Unable to get {} due to {}.".format(domain, e.__class__))
return None


Expand Down

0 comments on commit e9b84bb

Please sign in to comment.