"git@developer.sourcefind.cn:OpenDAS/fairscale.git" did not exist on "8c405c518168eea4f8a0f52d11bace0510aa2cda"
Commit e1ff23fd authored by Davis E. King's avatar Davis E. King
Browse files

Merge pull request #68 from yukoba/patch-1

sys.stdout.encoding instead of latin-1 in setup.py
parents 80e6443d d35104ed
...@@ -265,7 +265,7 @@ def enqueue_output(out, queue): ...@@ -265,7 +265,7 @@ def enqueue_output(out, queue):
def _log_buf(buf): def _log_buf(buf):
if not buf: if not buf:
return return
buf = buf.decode("latin-1") buf = buf.decode(sys.stdout.encoding)
buf = buf.rstrip() buf = buf.rstrip()
lines = buf.splitlines() lines = buf.splitlines()
for line in lines: for line in lines:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment