From c5c32b457f6bb6197bee75d06d59fbb17c1ffe98 Mon Sep 17 00:00:00 2001 From: Andrew n marshall Date: Wed, 22 Feb 2017 22:58:39 -0800 Subject: [PATCH] Fix #946. Don't check for presence of constants.js --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 601b9f3b1..4f89ec744 100755 --- a/build.py +++ b/build.py @@ -417,7 +417,7 @@ class Gen_langfiles(threading.Thread): "--quiet"] json_files = glob.glob(os.path.join("msg", "json", "*.json")) json_files = [file for file in json_files if not - (file.endswith(("keys.json", "synonyms.json", "qqq.json")))] + (file.endswith(("keys.json", "synonyms.json", "qqq.json", "constants.json")))] cmd.extend(json_files) subprocess.check_call(cmd) except (subprocess.CalledProcessError, OSError) as e: