mirror of
https://github.com/beetbox/beets.git
synced 2025-12-27 19:12:40 +01:00
fix coroutine init for "as Tracks" (GC-486)
This commit is contained in:
parent
f127d8e18a
commit
9e2e8e5ca7
1 changed files with 2 additions and 2 deletions
|
|
@ -667,8 +667,8 @@ def user_query(session):
|
|||
while True:
|
||||
item_task = yield
|
||||
item_tasks.append(item_task)
|
||||
ipl = pipeline.Pipeline((emitter(), item_lookup(),
|
||||
item_query(), collector()))
|
||||
ipl = pipeline.Pipeline((emitter(), item_lookup(session),
|
||||
item_query(session), collector()))
|
||||
ipl.run_sequential()
|
||||
task = pipeline.multiple(item_tasks)
|
||||
continue
|
||||
|
|
|
|||
Loading…
Reference in a new issue