Skip to content

Commit

Permalink
Merge pull request #363 from whipper-team/bugfix/spaces_before_barcode
Browse files Browse the repository at this point in the history
Fix misaligned output in command.mblookup
  • Loading branch information
JoeLametta authored Feb 13, 2019
2 parents 9524289 + e91fe27 commit 7b811c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whipper/command/mblookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def do(self):
if md.catalogNumber:
print(' Cat no: %s' % md.catalogNumber)
if md.barcode:
print(' Barcode: %s' % md.barcode)
print(' Barcode: %s' % md.barcode)

for j, track in enumerate(md.tracks):
print(' Track %2d: %s - %s' % (
Expand Down

0 comments on commit 7b811c8

Please sign in to comment.