py23 Another cff encoding fix

This commit is contained in:
Behdad Esfahbod 2013-12-16 00:03:15 -05:00
parent 6c51f500fb
commit 85a64db541

View File

@ -226,7 +226,7 @@ class IndexCompiler(object):
if hasattr(item, "toFile"):
item.toFile(file)
else:
file.write(tobytes(item))
file.write(tobytes(item, encoding="latin1"))
class IndexedStringsCompiler(IndexCompiler):