mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
the conversion is successfull only if returncode is 0
This commit is contained in:
parent
c5c95d3718
commit
0fb8eb0b8f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ def patch_file(self):
|
||||||
for process in process_list:
|
for process in process_list:
|
||||||
if process_list[process] is not None:
|
if process_list[process] is not None:
|
||||||
returncode = process_list[process].poll()
|
returncode = process_list[process].poll()
|
||||||
if not(returncode == None):
|
if not(returncode == 0):
|
||||||
process_list.pop(process)
|
process_list.pop(process)
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue