Use a context manager in FontFile.save() to ensure file is always closed

This commit is contained in:
Jon Dufresne 2016-11-14 21:14:04 -08:00
parent 2a74940817
commit 25ac9a20e4

View File

@ -100,7 +100,7 @@ class FontFile(object):
self.bitmap.save(os.path.splitext(filename)[0] + ".pbm", "PNG")
# font metrics
fp = open(os.path.splitext(filename)[0] + ".pil", "wb")
with open(os.path.splitext(filename)[0] + ".pil", "wb") as fp:
fp.write(b"PILfont\n")
fp.write((";;;;;;%d;\n" % self.ysize).encode('ascii')) # HACK!!!
fp.write(b"DATA\n")
@ -110,4 +110,3 @@ class FontFile(object):
puti16(fp, [0] * 10)
else:
puti16(fp, m[0] + m[1] + m[2])
fp.close()