commit: 2d88e7483b4048f793c30f48203c7a9565bdc048 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> AuthorDate: Tue Oct 29 20:52:58 2019 +0000 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org> CommitDate: Tue Oct 29 20:53:50 2019 +0000 URL: https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=2d88e748
fixes bug #698686 Bug: https://bugs.gentoo.org/698686 Fix by charles17 <AT> arcor.de Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org> src/py/build-xml-rewrite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py/build-xml-rewrite b/src/py/build-xml-rewrite index 5a67145..b449305 100755 --- a/src/py/build-xml-rewrite +++ b/src/py/build-xml-rewrite @@ -54,7 +54,7 @@ def main(): junit.append(gcp_sub) junit.attrib['haltonfailure'] = 'true' - with open(file, 'w') as f: + with open(file, 'wb') as f: tree.write(f)
