mirror of
https://github.com/beetbox/beets.git
synced 2026-02-20 22:31:38 +01:00
Fix "skipped N directories" message
This commit is contained in:
parent
8a60875086
commit
4169da3dd1
2 changed files with 3 additions and 1 deletions
|
|
@ -1103,6 +1103,7 @@ def read_tasks(session):
|
|||
for t in task_factory.tasks():
|
||||
imported |= not t.skip
|
||||
yield t
|
||||
skipped += task_factory.skipped
|
||||
|
||||
# Indicate the directory is finished.
|
||||
# FIXME hack to delete extracted archives
|
||||
|
|
@ -1117,7 +1118,7 @@ def read_tasks(session):
|
|||
|
||||
# Show skipped directories.
|
||||
if skipped:
|
||||
log.info(u'Skipped {0} directories.', skipped)
|
||||
log.info(u'Skipped {0} paths.', skipped)
|
||||
|
||||
|
||||
def query_tasks(session):
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@ Fixes:
|
|||
* Remove the ``beatport`` plugin. `Beatport`_ has shut off public access to
|
||||
their API and denied our request for an account. We have not heard from the
|
||||
company since 2013, so we are assuming access will not be restored.
|
||||
* Incremental imports now (once again) show a "skipped N directories" message.
|
||||
|
||||
For developers: The logging system in beets has been overhauled. Plugins now
|
||||
each have their own logger, which helps by automatically adjusting the
|
||||
|
|
|
|||
Loading…
Reference in a new issue