mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 12:02:41 +01:00
call is_alive() instead of isAlive() in pipeline
This commit is contained in:
parent
33faa48516
commit
74aeb0edbc
1 changed files with 1 additions and 1 deletions
|
|
@ -412,7 +412,7 @@ class Pipeline(object):
|
|||
try:
|
||||
# Using a timeout allows us to receive KeyboardInterrupt
|
||||
# exceptions during the join().
|
||||
while threads[-1].isAlive():
|
||||
while threads[-1].is_alive():
|
||||
threads[-1].join(1)
|
||||
|
||||
except:
|
||||
|
|
|
|||
Loading…
Reference in a new issue