From 08be8156c330aacddf8b0611d43e256a51ca9eb0 Mon Sep 17 00:00:00 2001 From: Guo Yunhe Date: Sat, 6 Nov 2021 14:08:12 +0800 Subject: [PATCH] Crowdin: Fix Python syntax error --- intl/json2h.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intl/json2h.py b/intl/json2h.py index 8c11e34e1c..6b8a79388e 100755 --- a/intl/json2h.py +++ b/intl/json2h.py @@ -23,7 +23,7 @@ p = re.compile( def c89_cut(old_str): - if old_str.endswith('[...]') + if old_str.endswith('[...]'): return old_str new_str = '' byte_count = 0