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 2b28293 commit 24d3debCopy full SHA for 24d3deb
Lib/ufo2ft/outlineCompiler.py
@@ -1511,7 +1511,7 @@ def setupTable_CFF(self):
1511
trademark = getAttrWithFallback(info, "trademark")
1512
if trademark:
1513
trademark = normalizeStringForPostscript(
1514
- trademark.replace("\u00A9", "Copyright")
+ trademark.replace("\u00a9", "Copyright")
1515
)
1516
if trademark != self.ufo.info.trademark:
1517
logger.info(
@@ -1526,7 +1526,7 @@ def setupTable_CFF(self):
1526
copyright = getAttrWithFallback(info, "copyright")
1527
if copyright:
1528
copyright = normalizeStringForPostscript(
1529
- copyright.replace("\u00A9", "Copyright")
+ copyright.replace("\u00a9", "Copyright")
1530
1531
if copyright != self.ufo.info.copyright:
1532
0 commit comments