From b2c9dda8be8527ff7b6359d5a31c8bd28d4c7653 Mon Sep 17 00:00:00 2001 From: Deathamns Date: Sun, 11 Jan 2015 18:41:52 +0100 Subject: [PATCH] Miscellaneous changes --- tools/make-firefox-meta.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/make-firefox-meta.py b/tools/make-firefox-meta.py index 49967ca..55922d5 100644 --- a/tools/make-firefox-meta.py +++ b/tools/make-firefox-meta.py @@ -25,7 +25,7 @@ target_locale_dir = pj(build_dir, 'locale') language_codes = [] description = '' -for alpha2 in os.listdir(source_locale_dir): +for alpha2 in sorted(os.listdir(source_locale_dir)): locale_path = pj(source_locale_dir, alpha2, 'messages.json') with open(locale_path, encoding='utf-8') as f: string_data = json.load(f, object_pairs_hook=OrderedDict)