projects
/
gentoo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f9d0c00602c8f8b4b88b04c370aae39544ca700c
[gentoo.git]
/
1
--- mkimage/imagetool-uncompressed.py
2
+++ mkimage/imagetool-uncompressed.py
3
@@ -46,7 +47,7 @@
4
f = open(args.bootimage, "wb")
5
6
for m in mem:
7
- f.write(chr(m))
8
+ f.write(chr(m).encode('latin1'))
9
10
f.write(kernel_image)
11
f.close()