Commit 598618e8 authored by Damien George's avatar Damien George

tools/makemanifest.py: Make str conversion compatible with Python 2.

Signed-off-by: default avatarDamien George <damien@micropython.org>
parent 9aa151e3
......@@ -347,7 +347,7 @@ def main():
)
if res != 0:
print("error freezing mpy {}:".format(mpy_files))
print(str(output_mpy, "utf8"))
print(output_mpy.decode())
sys.exit(1)
else:
output_mpy = (
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment