mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 11:18:26 +02:00
removed 3 useless return 0 causing issue.
This commit is contained in:
parent
3ca04e0e8e
commit
d356f8f250
1 changed files with 1 additions and 5 deletions
|
@ -99,16 +99,12 @@ def patch_track(self, tracks, total_track="?"):
|
|||
get_track_wu8(track_file) +
|
||||
self.translate(" n'a pas été correctement converti. (") +
|
||||
str(error_count) + "/" + str(error_max) + ")")
|
||||
return 0
|
||||
|
||||
else:
|
||||
if self.boolvar_del_track_after_conv.get(): os.remove(get_track_wu8(track_file))
|
||||
return 0
|
||||
else:
|
||||
process_list.pop(track_file)
|
||||
|
||||
if any(process_list.values()): return 0 # si il y a encore des processus
|
||||
else: return 1 # si il n'y a plus de processus
|
||||
if not(any(process_list.values())): return 1 # si il n'y a plus de processus
|
||||
return 0
|
||||
|
||||
for i, track in enumerate(tracks):
|
||||
|
|
Loading…
Reference in a new issue