projects
/
gentoo.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
28b8a6f3170fdcf79f4a681fb7afeccff7eb13bd
[gentoo.git]
/
1
--- a/imagetool-uncompressed.py
2
+++ b/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()