Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Fix util/dump-font.py
Browse files Browse the repository at this point in the history
Broken since 4c503e7.
  • Loading branch information
khaledhosny committed Sep 19, 2020
1 parent 8301074 commit e04a118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/dump-font.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def main():
with open(os.path.join(outpath, "fontinfo"), "x") as fp:
fp.write(info)

glyphs = [font.convertToBez(n, True, True)[0] for n in names]
glyphs = [font.convertToBez(n, True, True) for n in names]
for name, glyph in zip(names, glyphs):
if glyph is None:
glyph = ""
Expand Down

0 comments on commit e04a118

Please sign in to comment.