Merge pull request #582 from kivy/unicode_fix
Fix Py3 utf-8 encode error
This commit is contained in:
commit
7a41562038
1 changed files with 1 additions and 1 deletions
|
@ -311,7 +311,7 @@ class Buildozer(object):
|
||||||
ret_stdout.append(chunk)
|
ret_stdout.append(chunk)
|
||||||
if show_output:
|
if show_output:
|
||||||
if IS_PY3:
|
if IS_PY3:
|
||||||
stdout.write(chunk.decode('utf-8'))
|
stdout.write(str(chunk))
|
||||||
else:
|
else:
|
||||||
stdout.write(chunk)
|
stdout.write(chunk)
|
||||||
if fd_stderr in readx:
|
if fd_stderr in readx:
|
||||||
|
|
Loading…
Reference in a new issue