Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
fix: wrong logging format
Browse files Browse the repository at this point in the history
close #350
  • Loading branch information
NateScarlet committed Aug 21, 2022
1 parent 92759f6 commit d5de069
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_derby/single_mode/race/game_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _find_by_race_menu_item(ctx: Context, img: PIL.Image.Image) -> Iterator[Race
yield i
match_count += 1
if not match_count:
app.log.image("no race match: %s" % full_spec, spec_img, level=app.ERROR)
app.log.image("no race match: %s" % (full_spec,), spec_img, level=app.ERROR)
raise ValueError("_find_by_race_menu_item: no race match spec: %s", full_spec)


Expand Down

0 comments on commit d5de069

Please sign in to comment.