Skip to content
This repository has been archived by the owner on May 29, 2020. It is now read-only.

Commit

Permalink
Merge pull request #335 from jfkthame/patch-1
Browse files Browse the repository at this point in the history
Always pass glyph name to createChar()
  • Loading branch information
sapegin committed May 20, 2016
2 parents e8537ba + 0d09d4c commit d45b24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/engines/fontforge/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def create_empty_char(f, c):
glyph = f.createChar(cp, name)
glyph.addPosSub('liga', tuple(name))
else:
glyph = f.createChar(cp)
glyph = f.createChar(cp, str(name))
glyph.importOutlines(filePath)

if args['normalize']:
Expand Down

0 comments on commit d45b24c

Please sign in to comment.