From 0afe0a60a116bb3408336e77cd63ff7995952f8c Mon Sep 17 00:00:00 2001 From: Malte Ried Date: Sun, 18 Jan 2015 19:16:51 +0100 Subject: [PATCH] Instead of using the list of archive tasks for further importing, only the fist task was used - which is not iterable, of course. --- beets/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/importer.py b/beets/importer.py index cd968261a..1c5e54e2f 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -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()