fnp
/
librarian.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
8550d17
)
Compatibility fix.
author
Radek Czajka
<rczajka@rczajka.pl>
Wed, 10 Jun 2020 15:01:03 +0000
(17:01 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Wed, 10 Jun 2020 15:01:03 +0000
(17:01 +0200)
src/librarian/text.py
patch
|
blob
|
history
diff --git
a/src/librarian/text.py
b/src/librarian/text.py
index
8e3960d
..
e425552
100644
(file)
--- a/
src/librarian/text.py
+++ b/
src/librarian/text.py
@@
-8,6
+8,7
@@
from __future__ import unicode_literals
import copy
from librarian import functions, OutputFile, get_resource
from lxml import etree
import copy
from librarian import functions, OutputFile, get_resource
from lxml import etree
+import io
import os
import six
import os
import six
@@
-18,7
+19,7
@@
functions.reg_strip()
functions.reg_person_name()
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()
TEMPLATE = f.read()