From 74aeb0edbcf863156c1364705d387da0c635cc06 Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Sun, 26 Jun 2016 21:47:15 -0400 Subject: [PATCH] call is_alive() instead of isAlive() in pipeline --- beets/util/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/util/pipeline.py b/beets/util/pipeline.py index 1a0cd4b5c..995d6e3d0 100644 --- a/beets/util/pipeline.py +++ b/beets/util/pipeline.py @@ -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: