fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add DAISY HTML builder.
[librarian.git]
/
src
/
librarian
/
text.py
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()