From 67d634229953bbb35ea83b155a27f2aa361c78d0 Mon Sep 17 00:00:00 2001 From: Rudi Heitbaum Date: Fri, 9 Jun 2023 11:49:38 +0000 Subject: [PATCH] tools/distro-tool: Fix python3.10 threading DeprecationWarnings --- tools/distro-tool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()