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()