Skip to content

Commit

Permalink
Fix radiasoft/raydata#168: order output by mtime (#7280)
Browse files Browse the repository at this point in the history
  • Loading branch information
e-carlin authored Sep 24, 2024
1 parent 051f61f commit c3d2c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sirepo/raydata/analysis_driver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def load_json(path):
res[e.name] = [
PKDict(filename=p.basename, data=e.op(p))
for p in pkio.sorted_glob(
self.get_output_dir().join(f"**/*.{e.file_type}")
self.get_output_dir().join(f"**/*.{e.file_type}"), key="mtime"
)
]
return res
Expand Down

0 comments on commit c3d2c2c

Please sign in to comment.