From 8d0449c23d2fa58aced729b52028455cae399ec4 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 8 May 2013 22:31:53 -0700 Subject: [PATCH] rewrap and changelog note for #267 --- beets/ui/commands.py | 3 ++- docs/changelog.rst | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) 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) ---------------------