diff options
Diffstat (limited to 'tools/pyboard.py')
-rwxr-xr-x | tools/pyboard.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/pyboard.py b/tools/pyboard.py index 99c4b850c1..92c8d939a0 100755 --- a/tools/pyboard.py +++ b/tools/pyboard.py @@ -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() |