tools/distro-tool: Fix python3.10 threading DeprecationWarnings

This commit is contained in:
Rudi Heitbaum 2023-06-09 11:49:38 +00:00
parent fedfb6b069
commit 67d6342299

View File

@ -610,7 +610,7 @@ def main():
for i in range(threadcount): for i in range(threadcount):
t = MyThread(input_queue, output_queue) t = MyThread(input_queue, output_queue)
threads.append(t) threads.append(t)
t.setDaemon(False) t.daemon = False
# Start the threads... # Start the threads...
for t in threads: t.start() for t in threads: t.start()