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:
Tai Lee 2013-05-21 23:52:58 +10:00
parent 2d04285ebc
commit d1548c1178

View file

@ -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)