call is_alive() instead of isAlive() in pipeline

This commit is contained in:
Johnny Robeson 2016-06-26 21:47:15 -04:00
parent 33faa48516
commit 74aeb0edbc

View file

@ -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: