[mtiLib] Writing to XML works after e0d27461bea131518733b4f05ef3068d5a6ecc91

This commit is contained in:
Behdad Esfahbod 2016-01-14 11:48:16 +00:00
parent 18297eb591
commit 9727318680

View File

@ -1102,9 +1102,9 @@ def main(args):
for f in args:
debug("Processing", f)
table = build(open(f, 'rt'), font, tableTag=tableTag)
blob = table.compile(font)
blob = table.compile(font) # Make sure it compiles
decompiled = table.__class__()
decompiled.decompile(blob, font)
decompiled.decompile(blob, font) # Make sure it decompiles!
#continue
from fontTools.misc import xmlWriter
@ -1112,8 +1112,8 @@ def main(args):
writer = xmlWriter.XMLWriter(sys.stdout)
writer.begintag(tag)
writer.newline()
#table.toXML(writer, font)
decompiled.toXML(writer, font)
table.toXML(writer, font)
#decompiled.toXML(writer, font)
writer.endtag(tag)
writer.newline()