Skip to content

Commit b99ce9f

Browse files
authored
Use utf-8 in find missing locale script (LAION-AI#1891)
Windows don't use utf-8 locale, so running this script fails. Setting the encoding in open fixes that. Co-authored-by: Lukáš Frolka <denzil@lunaen.com>
1 parent 45a1968 commit b99ce9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/frontend-development/find-missing-locales.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def print_result(missing, not_translated, file):
3636

3737

3838
def audit(file, en_file):
39-
en_json = load(open(en_file))
40-
translation_json = load(open(file))
39+
en_json = load(open(en_file, encoding="utf-8"))
40+
translation_json = load(open(file, encoding="utf-8"))
4141
return (get_missing(en_json, translation_json), get_not_translated(en_json, translation_json), file)
4242

4343

0 commit comments

Comments
 (0)