mirror of
https://github.com/beetbox/beets.git
synced 2026-02-21 14:56:02 +01:00
Handle singletons in duplicate verbose prompt
This commit is contained in:
parent
245d777185
commit
38f30b2c13
1 changed files with 5 additions and 2 deletions
|
|
@ -873,8 +873,11 @@ class TerminalImportSession(importer.ImportSession):
|
|||
not task.is_album,
|
||||
))
|
||||
if config['import']['duplicate_verbose_prompt']:
|
||||
for dup in duplicate.items():
|
||||
print(f" {dup}")
|
||||
if task.is_album:
|
||||
for dup in duplicate.items():
|
||||
print(f" {dup}")
|
||||
else:
|
||||
print(f" {duplicate}")
|
||||
|
||||
print_("New: " + summarize_items(
|
||||
task.imported_items(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue