From c15c3ee9ec0ec8d2734d7b0309b4c8d79825586a Mon Sep 17 00:00:00 2001 From: Ozzi Lee Date: Tue, 1 Feb 2011 22:07:36 -0600 Subject: [PATCH] Log album.albumartist instead of album.artist after import. --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 78c4d3352..5add78075 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -525,7 +525,7 @@ def simple_import(lib, paths, copy, delete): os.remove(library._syspath(old_path)) - log.info('added album: %s - %s' % (album.artist, album.album)) + log.info('added album: %s - %s' % (album.albumartist, album.album)) # The import command.