Skip to content

Commit

Permalink
py3 only
Browse files Browse the repository at this point in the history
  • Loading branch information
typemytype committed Aug 28, 2019
1 parent 2bc063c commit e5259d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/ufo2fdk/fontInfoData.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def openTypeOS2WinDescentFallback(info):
# postscript

_postscriptFontNameExceptions = set("[](){}<>/%")
_postscriptFontNameAllowed = set([unichr(i) for i in range(33, 137)])
_postscriptFontNameAllowed = set([chr(i) for i in range(33, 137)])


def normalizeStringForPostscript(s, allowSpaces=True):
Expand Down

0 comments on commit e5259d9

Please sign in to comment.