mirror of
https://github.com/beetbox/beets.git
synced 2026-01-10 01:50:34 +01:00
Merge pull request #267 from jayme-github/album_itemcount
Print number of tracks when importing
This commit is contained in:
commit
9d73c3111a
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue