We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2f518 commit d4aa6ccCopy full SHA for d4aa6cc
lib/fontline/commands.py
@@ -41,7 +41,8 @@ def get_font_report(fontpath):
41
# The version string
42
for needle in namerecord_list:
43
if needle.langID == 0 and needle.nameID == 5:
44
- report_string = report_string + str(needle.string) + "\n"
+ report_string += needle.toStr() + "\n"
45
+ break
46
# The SHA1 string
47
report_string = report_string + "SHA1: " + get_sha1(fontpath) + "\n\n"
48
# The vertical metrics strings
0 commit comments