Skip to content

Commit 5ca90f2

Browse files
committed
Fixing type issue in generate.py
1 parent 78e8cf3 commit 5ca90f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/fontcustom/scripts/generate.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def createGlyph( name, source, code ):
8585
glyph.width = 200
8686

8787
for glyph, data in manifest['glyphs'].items():
88-
name = createGlyph(glyph, data['source'], data['codepoint'])
88+
name = createGlyph(glyph, data['source'], int(data['codepoint']))
8989

9090
#
9191
# Generate Files

0 commit comments

Comments
 (0)