Compare commits

...

1 Commits

Author SHA1 Message Date
Paul Sokolovsky 9dda6827b9 tools/pyboard.py: Don't add terminating \x04 character to stdout output. 2015-11-07 12:13:59 +03:00
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()