Compatibility fix.
authorRadek Czajka <rczajka@rczajka.pl>
Wed, 10 Jun 2020 15:01:03 +0000 (17:01 +0200)
committerRadek Czajka <rczajka@rczajka.pl>
Wed, 10 Jun 2020 15:01:03 +0000 (17:01 +0200)
src/librarian/text.py

index 8e3960d..e425552 100644 (file)
@@ -8,6 +8,7 @@ from __future__ import unicode_literals
 import copy
 from librarian import functions, OutputFile, get_resource
 from lxml import etree
+import io
 import os
 import six
 
@@ -18,7 +19,7 @@ functions.reg_strip()
 functions.reg_person_name()
 
 
-with open(get_resource("res/text/template.txt")) as f:
+with io.open(get_resource("res/text/template.txt")) as f:
     TEMPLATE = f.read()