Merge pull request #267 from jayme-github/album_itemcount

Print number of tracks when importing
This commit is contained in:
Adrian Sampson 2013-05-08 22:29:30 -07:00
commit 9d73c3111a

View file

@ -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)