summaryrefslogtreecommitdiff
path: root/scripts/lib/fontbuild
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-12-11 11:57:25 -0800
committerJames Godfrey-Kittle <jamesgk@google.com>2015-12-11 11:59:01 -0800
commit5397958ba23710b7146b9351d06ce96da66a19bd (patch)
treeb6dc3172b8e3f9d551f47e78a2e84f7b84350b86 /scripts/lib/fontbuild
parenta66d29b00655b3638620c0c726a3ef7e97e46559 (diff)
Update calls to cu2qu
This is hopefully the last time we have to do this. In response to https://github.com/googlei18n/cu2qu/commit/56f36a1b2ab673c25ac81756d5c251909a7d41e2
Diffstat (limited to 'scripts/lib/fontbuild')
-rw-r--r--scripts/lib/fontbuild/Build.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/fontbuild/Build.py b/scripts/lib/fontbuild/Build.py
index be0b79c..cf07d55 100644
--- a/scripts/lib/fontbuild/Build.py
+++ b/scripts/lib/fontbuild/Build.py
@@ -184,10 +184,10 @@ class FontProject:
# fewer control points and look noticeably different
max_err = 0.002
if self.compatible:
- fonts_to_quadratic(*fonts, max_err_em=max_err, dump_report=True)
+ fonts_to_quadratic(fonts, max_err_em=max_err, dump_stats=True)
else:
for font in fonts:
- fonts_to_quadratic(font, max_err_em=max_err, dump_report=True)
+ fonts_to_quadratic([font], max_err_em=max_err, dump_stats=True)
log(">> Generating TTF files")
for font in fonts: