Skip to content

Commit

Permalink
readme_generator: sorted screenshot list for consistency (#2440)
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Jun 23, 2024
1 parent 412b900 commit cd7ae5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/readme_generator/make_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def generate_READMEs(app_path: Path):

screenshots_dir = app_path / "doc" / "screenshots"
if screenshots_dir.exists():
for entry in screenshots_dir.iterdir():
for entry in sorted(screenshots_dir.iterdir()):
# only pick files (no folder) on the root of 'screenshots'
if not entry.is_file():
continue
Expand Down

0 comments on commit cd7ae5c

Please sign in to comment.