mirror of
https://github.com/beetbox/beets.git
synced 2026-02-05 06:55:59 +01:00
Instead of using the list of archive tasks for further importing, only the fist task was used - which is not iterable, of course.
This commit is contained in:
parent
c91f7f7795
commit
0afe0a60a1
1 changed files with 1 additions and 1 deletions
|
|
@ -1117,7 +1117,7 @@ def read_tasks(session):
|
|||
|
||||
log.debug(u'extracting archive {0}',
|
||||
displayable_path(toppath))
|
||||
archive_tasks = task_factory.archive(toppath)[0]
|
||||
archive_tasks = task_factory.archive(toppath)
|
||||
for archive_task in archive_tasks:
|
||||
try:
|
||||
archive_task.extract()
|
||||
|
|
|
|||
Loading…
Reference in a new issue