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 5681045 commit 43b5ba0Copy full SHA for 43b5ba0
postbuild_processing/fixes/fix-dsig.py
@@ -39,7 +39,7 @@ def main(argv):
39
)
40
sys.exit(1)
41
else:
42
- font = ttLib.TTFont(path)
+ font = ttLib.TTFont(file=path, recalcTimestamp=False)
43
set_empty_dsig(font)
44
font.save(path)
45
print(path + " - successful DSIG table fix")
postbuild_processing/fixes/fix-fstype.py
@@ -30,7 +30,7 @@ def main(argv):
30
31
32
33
- font = TTFont(path)
+ font = TTFont(file=path, recalcTimestamp=False)
34
font['OS/2'].fsType = 0
35
36
print(path + " - successful fstype fix")
0 commit comments