From d1548c11785a720124fa141bfbfd4f1a329a7cb0 Mon Sep 17 00:00:00 2001 From: Tai Lee Date: Tue, 21 May 2013 23:52:58 +1000 Subject: [PATCH] Indent album title and artist when there are no changes for consistency with when there are (and easier to read?) --- beets/ui/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 432aac4f3..bab48da06 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -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)