From: Simon Glass Date: Sun, 18 Sep 2016 22:48:38 +0000 (-0600) Subject: buildman: Drop the 'alive' flag in BuilderThread X-Git-Tag: v2016.11-rc2~10^2~36 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2880e6b5e231690bbc64816d696322b06d41b2ee;p=u-boot buildman: Drop the 'alive' flag in BuilderThread This is not used, so drop it. Signed-off-by: Simon Glass --- diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index af4d15a5b4..c4fe219532 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -470,9 +470,7 @@ class BuilderThread(threading.Thread): This thread picks a job from the queue, runs it, and then goes to the next job. """ - alive = True while True: job = self.builder.queue.get() - if alive: - self.RunJob(job) + self.RunJob(job) self.builder.queue.task_done()