Skip to content

Commit

Permalink
Check ready_index correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
rocallahan committed Sep 27, 2023
1 parent 3231f29 commit eed96c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release-process/prepare-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def run_tests():
if process.poll() is not None:
ready_index = running_index
break
if ready_index:
if ready_index is not None:
distro_name, arch, process = running.pop(ready_index)
output_file = output_file_name(distro_name, arch)
vm_kept = has_line_starting(output_file, 'VM kept; ')
Expand Down

0 comments on commit eed96c1

Please sign in to comment.