changeset 327:72682b71eb3d 0.5.x

Ported [339] to 0.5.x, closing #77.
author cmlenz
date Tue, 10 Jan 2006 11:49:31 +0000
parents 66f7faaf3705
children 9644b07b90c6
files bitten/build/api.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/bitten/build/api.py
+++ b/bitten/build/api.py
@@ -103,8 +103,8 @@
                     os.chdir(old_cwd)
 
             for out_line, err_line in self._combine(out_lines, err_lines):
-                yield out_line and out_line.rstrip(), \
-                      err_line and err_line.rstrip()
+                yield out_line and out_line.rstrip().replace('\x00', ''), \
+                      err_line and err_line.rstrip().replace('\x00', '')
 
     else: # posix
 
Copyright (C) 2012-2017 Edgewall Software