tools/pyboard.py: Don't add terminating \x04 character to stdout output.

gcollect-auto-setjmp
Paul Sokolovsky 2015-11-07 12:11:12 +03:00 committed by Damien George
parent b7ca945877
commit 89f2ddd2d0
1 changed files with 1 additions and 0 deletions

View File

@ -47,6 +47,7 @@ except AttributeError:
stdout = sys.stdout
def stdout_write_bytes(b):
b = b.replace(b"\x04", b"")
stdout.write(b)
stdout.flush()