Skip to content

Commit

Permalink
Fix task logging error
Browse files Browse the repository at this point in the history
We're having weird issues with the celery task, and while I'm not sure this is the culprit, it is the only error I'm seeing in the logs at the moment.
  • Loading branch information
kitsuta committed Oct 21, 2024
1 parent ca01952 commit 5af08ee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions uber/tasks/mivs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ def mivs_assign_game_codes_to_judges():
break
else:
log.warning(
'Unable to find free code for game {} to assign to judge {}',
game.title,
review.judge.full_name)
f'Unable to find free code for game {game.title} to assign to judge {review.judge.full_name}')


def should_send_reminder(session, studio, keys, ident_prepend):
Expand Down

0 comments on commit 5af08ee

Please sign in to comment.