Skip to content

Commit

Permalink
Merge PR #6147: MAINT: Sort input file list
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzmbrzl authored Jun 10, 2023
2 parents 82bcd1e + 5c2e2dd commit f09c074
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate_flag_qrc.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main():
# Get a list of all flag SVGs
flags = []

for fn in os.listdir(args.flag_dir):
for fn in sorted(os.listdir(args.flag_dir)):
if not fn.lower().endswith('svg'):
continue

Expand Down

0 comments on commit f09c074

Please sign in to comment.