Skip to content

Commit

Permalink
Sort the list of instances.
Browse files Browse the repository at this point in the history
  • Loading branch information
huitema committed Mar 9, 2024
1 parent a725267 commit 14c9430
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imrsrsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def prepare_instance_list(storage_folder):
cbor_path = join(folder_path, "cbor")
if isdir(cbor_path):
instance_list.append(folder)
return instance_list
return sorted(instance_list)

class instance_bucket:
def __init__(self, instance, storage_folder, result_path, tmp_path, month, cmd, do_debug):
Expand Down

0 comments on commit 14c9430

Please sign in to comment.