summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNémeth László <laci@nemeth-LIFEBOOK-UH552.(none)>2013-11-20 08:51:42 +0100
committerNémeth László <laci@nemeth-LIFEBOOK-UH552.(none)>2013-11-20 08:51:42 +0100
commit06fa09dca2b89fa0f7bb6af8b2e6e55966eff858 (patch)
treeffec162e3f58110d485b89306597bad6d8e32d31
parent8eae71437609a741b18387156407611da87140fc (diff)
Python 3.3 port of the build environment of the editor
-rw-r--r--ChangeLog3
-rw-r--r--make.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4430bc9..0808d99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2013-11-20 László Németh <nemeth@numbertext.org>:
+ - Python 3.3 port of build environment of the editor
+
2013-10-14 Olivier Ronez <dicollecte.org>:
- Python 3.3 port of the build environment
- Workaround for paragraph chunking in LO 4, see
diff --git a/make.py b/make.py
index d40d3af..6c8a7cd 100644
--- a/make.py
+++ b/make.py
@@ -21,7 +21,7 @@ def dist(fn, a):
for i in a["extras"].split(","):
z.writestr(i.strip().replace("../", "").replace("__implname__", a["implname"]), \
- open(fn[:fn.rfind("/")+1] + i.strip()).read())
+ open(fn[:fn.rfind("/")+1] + i.strip(), 'rb').read())
try:
d = open(fn + ".dlg", "r", encoding="utf-8").readlines()