mirror of
https://github.com/beetbox/beets.git
synced 2026-02-24 08:12:54 +01:00
Indent album title and artist when there are no changes for consistency with when there are (and easier to read?)
This commit is contained in:
parent
2d04285ebc
commit
d1548c1178
1 changed files with 2 additions and 1 deletions
|
|
@ -198,7 +198,8 @@ def show_change(cur_artist, cur_album, match):
|
|||
print_("To:")
|
||||
show_album(artist_r, album_r)
|
||||
else:
|
||||
message = u"Tagging: %s - %s" % (match.info.artist, match.info.album)
|
||||
message = u"Tagging:\n %s - %s" % (match.info.artist,
|
||||
match.info.album)
|
||||
if match.extra_items or match.extra_tracks:
|
||||
message += u' (%s)' % ui.colorize('yellow', PARTIAL_MATCH_MESSAGE)
|
||||
print_(message)
|
||||
|
|
|
|||
Loading…
Reference in a new issue