Skip to content
Snippets Groups Projects
Commit 89f2ddd2 authored by Paul Sokolovsky's avatar Paul Sokolovsky Committed by Damien George
Browse files

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

parent b7ca9458
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment