|
@@ -122,6 +122,7 @@ the following meanings:
|
|
|
t = _threading.Thread(target=self._StatusHelper,
|
|
t = _threading.Thread(target=self._StatusHelper,
|
|
|
args=(project, counter, sem, output))
|
|
args=(project, counter, sem, output))
|
|
|
threads_and_output.append((t, output))
|
|
threads_and_output.append((t, output))
|
|
|
|
|
+ t.daemon = True
|
|
|
t.start()
|
|
t.start()
|
|
|
for (t, output) in threads_and_output:
|
|
for (t, output) in threads_and_output:
|
|
|
t.join()
|
|
t.join()
|