Skip to content

Commit 71dca95

Browse files
committed
make.py: sort addons in as-needed
1 parent a4cdca3 commit 71dca95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ def register(ptype, **kwargs):
401401
listings = {lang : [] for lang in languages}
402402
dirs = [file for file in glob.glob("*")
403403
if os.path.isdir(file) and file != '__pycache__']
404-
for addon in dirs:
404+
for addon in sorted(dirs):
405405
todo = False
406406
for po in glob.glob(r('''%(addon)s/po/*.po''')):
407407
locale = os.path.basename(po[:-9])

0 commit comments

Comments
 (0)