Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/javatoolkit:master commit in: src/py/
Date: Tue, 29 Oct 2019 20:54:15
Message-Id: 1572382430.2d88e7483b4048f793c30f48203c7a9565bdc048.fordfrog@gentoo
1 commit: 2d88e7483b4048f793c30f48203c7a9565bdc048
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 29 20:52:58 2019 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 29 20:53:50 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=2d88e748
7
8 fixes bug #698686
9
10 Bug: https://bugs.gentoo.org/698686
11 Fix by charles17 <AT> arcor.de
12
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 src/py/build-xml-rewrite | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 diff --git a/src/py/build-xml-rewrite b/src/py/build-xml-rewrite
19 index 5a67145..b449305 100755
20 --- a/src/py/build-xml-rewrite
21 +++ b/src/py/build-xml-rewrite
22 @@ -54,7 +54,7 @@ def main():
23 junit.append(gcp_sub)
24 junit.attrib['haltonfailure'] = 'true'
25
26 - with open(file, 'w') as f:
27 + with open(file, 'wb') as f:
28 tree.write(f)