Skip to content

Commit

Permalink
Merge pull request #600 from AndrewKvalheim/string-format
Browse files Browse the repository at this point in the history
Correct string formatting
  • Loading branch information
MerlijnWajer authored Apr 1, 2024
2 parents 5325328 + 2ebe703 commit a4b9742
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions whipper/command/cd.py
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,7 @@ def _ripIfNotRipped(number):
else:
raise RuntimeError("track can't be ripped. "
"Rip attempts number is equal "
"to %d",
self.options.max_retries)
"to {}".format(self.options.max_retries))
if trackResult in self.skipped_tracks:
print("Skipping CRC comparison for track %d "
"due to rip failure" % number)
Expand Down

0 comments on commit a4b9742

Please sign in to comment.