diff --git a/tools/distro-tool b/tools/distro-tool index 651a310595..5e28c7fb78 100755 --- a/tools/distro-tool +++ b/tools/distro-tool @@ -610,7 +610,7 @@ def main(): for i in range(threadcount): t = MyThread(input_queue, output_queue) threads.append(t) - t.setDaemon(False) + t.daemon = False # Start the threads... for t in threads: t.start()