Skip to content

Commit

Permalink
Avoid zero padding in logger track numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
itismadness authored and jtl999 committed Dec 9, 2018
1 parent 4b19411 commit efc4c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/result/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def trackLog(self, trackResult):
lines = []

# Track number
lines.append(" %02d:" % trackResult.number)
lines.append(" %d:" % trackResult.number)

# Filename (including path) of ripped track
lines.append(" Filename: %s" % trackResult.filename)
Expand Down

0 comments on commit efc4c88

Please sign in to comment.