From 9ed6c671faae039b129540d0c0770a1c4c83a37e Mon Sep 17 00:00:00 2001 From: Jayme Date: Mon, 6 May 2013 18:55:06 +0200 Subject: [PATCH] Print number of tracks on disc to simplify the decision of switching to singleton mode --- 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 f13232808..6153a22f4 100644 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -517,7 +517,7 @@ class TerminalImportSession(importer.ImportSession): """ # Show what we're tagging. print_() - print_(displayable_path(task.paths, u'\n')) + print_(displayable_path(task.paths, u'\n') + u' ({0} items)'.format(len(task.items))) # Take immediate action if appropriate. action = _summary_judment(task.rec)