tools/pyboard.py: Don't add terminating \x04 character to stdout output.
This commit is contained in:
parent
b7ca945877
commit
89f2ddd2d0
@ -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()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user