Skip to content

Commit adba565

Browse files
committedNov 27, 2024
extract_action_strings: Sort files
The POT is huge so it's important to keep the same order to be able to identify diffs. The files weren't sorted before so this was random.
1 parent 63dd460 commit adba565

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎data/nemo-actions/extract_action_strings

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Main:
2323
'''
2424
"""
2525
outstring += "\n"
26-
for fn in action_files:
26+
for fn in sorted(action_files):
2727
keyfile = GLib.KeyFile.new()
2828
if keyfile.load_from_file(fn, GLib.KeyFileFlags.NONE):
2929
if keyfile.has_group(GROUP):

0 commit comments

Comments
 (0)
Please sign in to comment.