diff --git a/beets/ui/commands.py b/beets/ui/commands.py index 6153a22f4..5560e1d79 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -517,7 +517,8 @@ class TerminalImportSession(importer.ImportSession): """ # Show what we're tagging. print_() - print_(displayable_path(task.paths, u'\n') + u' ({0} items)'.format(len(task.items))) + print_(displayable_path(task.paths, u'\n') + + u' ({0} items)'.format(len(task.items))) # Take immediate action if appropriate. action = _summary_judment(task.rec) diff --git a/docs/changelog.rst b/docs/changelog.rst index 74a91561e..75e064bc1 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,9 @@ Changelog 1.1.1 (in development) ---------------------- +* The importer output now shows the number of audio files in each album. + Thanks to jayme on GitHub. + 1.1.0 (April 29, 203) ---------------------