mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-29 21:52:54 +00:00
check isAlive for all the threads before calling join
This commit is contained in:
parent
9ad8976d74
commit
23d09bfa5d
1 changed files with 5 additions and 4 deletions
|
@ -3055,8 +3055,9 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
#wait for download threads to terminate
|
#wait for download threads to terminate
|
||||||
if downloadparallel > 0:
|
if downloadparallel > 0:
|
||||||
|
for threadcount in xrange(downloadparallel):
|
||||||
while True:
|
while True:
|
||||||
if( not threads[0].isAlive()):
|
if( not threads[threadcount].isAlive()):
|
||||||
break
|
break
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
for threadcount in xrange(downloadparallel):
|
for threadcount in xrange(downloadparallel):
|
||||||
|
|
Loading…
Reference in a new issue