mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
tools/distro-tool: Fix python3.10 threading DeprecationWarnings
This commit is contained in:
parent
fedfb6b069
commit
67d6342299
@ -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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user