summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtools/mk_hyb_file.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mk_hyb_file.py b/tools/mk_hyb_file.py
index c078454..978c082 100755
--- a/tools/mk_hyb_file.py
+++ b/tools/mk_hyb_file.py
@@ -416,7 +416,7 @@ def generate_hyb_file(hyph, ch_map, hyb_fn):
# Verify that the file contains the same lines as the lines argument, in arbitrary order
def verify_file_sorted(lines, fn):
- file_lines = [l.strip() for l in io.open(fn)]
+ file_lines = [l.strip() for l in io.open(fn, encoding='UTF-8')]
line_set = set(lines)
file_set = set(file_lines)
if line_set == file_set: