diff --git a/Lib/ufo2fdk/fontInfoData.py b/Lib/ufo2fdk/fontInfoData.py index 62f5ddb..1952315 100644 --- a/Lib/ufo2fdk/fontInfoData.py +++ b/Lib/ufo2fdk/fontInfoData.py @@ -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):