decode the buffer before appending
output from a process is in bytes in python3. we need to decode it. in Python3, bytes don't have an encode attribute. use this to identify it. Change-Id: I152f2ec34614131027db680ead98b53f9b321ed5
This commit is contained in:
parent
472ce9f5fa
commit
6cfc68e1e6
1 changed files with 2 additions and 0 deletions
|
@ -263,6 +263,8 @@ class GitCommand(object):
|
|||
if not buf:
|
||||
s_in.remove(s)
|
||||
continue
|
||||
if not hasattr(buf, 'encode'):
|
||||
buf = buf.decode()
|
||||
if s.std_name == 'stdout':
|
||||
self.stdout += buf
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue