mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
added a .copy() to avoid "changed size" issue
This commit is contained in:
parent
d356f8f250
commit
4d70a85fd3
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ def patch_track(self, tracks, total_track="?"):
|
|||
def clean_process():
|
||||
nonlocal error_count, error_max, process_list
|
||||
|
||||
for track_file, process in process_list.items():
|
||||
for track_file, process in process_list.copy().items():
|
||||
if process is not None:
|
||||
if process.poll() is None:
|
||||
pass # if the process is still running
|
||||
|
|
Loading…
Reference in a new issue