Indentation error causing forks to not be parallel. Ahem :)

This commit is contained in:
Michael DeHaan 2012-04-03 20:20:55 -04:00
commit 09e690fd7c

View file

@ -637,13 +637,13 @@ class Runner(object):
prc.start()
workers.append(prc)
try:
for worker in workers:
worker.join()
except KeyboardInterrupt:
for worker in workers:
worker.terminate()
worker.join()
try:
for worker in workers:
worker.join()
except KeyboardInterrupt:
for worker in workers:
worker.terminate()
worker.join()
results = []
while not result_queue.empty():