Compare commits

...

1 commit

Author SHA1 Message Date
53cee59313 uf2conv: eliminate trailing dot on filename
This trailing dot makes it less convenient to copy-and-paste the
uf2 filename into other terminal commands.
2020-01-09 12:45:01 -06:00

View file

@ -217,7 +217,7 @@ def list_drives():
def write_file(name, buf):
with open(name, "wb") as f:
f.write(buf)
print("Wrote %d bytes to %s." % (len(buf), name))
print("Wrote %d bytes to %s" % (len(buf), name))
def main():