Commit 05e24715 authored by Pau Gargallo's avatar Pau Gargallo

Decode message only if encoding is known

When python does not know the encoding of stdout, sys.stdout.encoding
is None.  Then calling decode(None) raises an exception.  We just
skip decoding when the encoding is unknown.
parent c8c55a89
...@@ -265,6 +265,7 @@ def enqueue_output(out, queue): ...@@ -265,6 +265,7 @@ def enqueue_output(out, queue):
def _log_buf(buf): def _log_buf(buf):
if not buf: if not buf:
return return
if sys.stdout.encoding:
buf = buf.decode(sys.stdout.encoding) buf = buf.decode(sys.stdout.encoding)
buf = buf.rstrip() buf = buf.rstrip()
lines = buf.splitlines() lines = buf.splitlines()
......
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