Skip to content

Commit

Permalink
fix export of (double) unicodes
Browse files Browse the repository at this point in the history
  • Loading branch information
schriftgestalt committed Apr 16, 2018
1 parent 3a59b79 commit e2e4306
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Glyphs Export.py
Original file line number Diff line number Diff line change
Expand Up @@ -512,8 +512,8 @@ def makePlist(font):
Layer["background"] = {"paths" : Paths}
Layers.append(Layer)
Glyph["layers"] = Layers
if glyph.unicode > 1:
Glyph["unicode"] = join("%.4X" % x for x in glyph.unicodes)
if glyph.unicode > 0:
Glyph["unicode"] = ",".join("%.4X" % x for x in glyph.unicodes)

if glyph.mark > 0:
Mark = glyph.mark
Expand Down

0 comments on commit e2e4306

Please sign in to comment.