aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-firefox-meta.py
diff options
context:
space:
mode:
authorDeathamns <deathamns@gmail.com>2015-01-11 18:41:52 +0100
committerDeathamns <deathamns@gmail.com>2015-01-13 07:30:04 +0100
commite0f214961d2aeec7273ed09c8552e641f440d980 (patch)
tree2f5c7c5d456ba6f39676c76ddace73c10f94551d /tools/make-firefox-meta.py
parenta71c967613a2654bd852d7c1d95dc2c245cb9413 (diff)
downloaduBlock-e0f214961d2aeec7273ed09c8552e641f440d980.zip
uBlock-e0f214961d2aeec7273ed09c8552e641f440d980.tar.gz
uBlock-e0f214961d2aeec7273ed09c8552e641f440d980.tar.bz2
Miscellaneous changes
Diffstat (limited to 'tools/make-firefox-meta.py')
-rw-r--r--tools/make-firefox-meta.py2
1 files changed, 1 insertions, 1 deletions
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)