mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +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):
|
||||
t = MyThread(input_queue, output_queue)
|
||||
threads.append(t)
|
||||
t.setDaemon(False)
|
||||
t.daemon = False
|
||||
|
||||
# Start the threads...
|
||||
for t in threads: t.start()
|
||||
|
Loading…
x
Reference in New Issue
Block a user