Skip to content

Commit

Permalink
Remove overwriting default parameter with same value
Browse files Browse the repository at this point in the history
  • Loading branch information
nmtschwarz committed Oct 4, 2022
1 parent 0daeb0f commit 48dc993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/engines/fontforge/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def generate(filename):
# Hint the TTF file
# ttfautohint is optional
if args['autoHint'] and find_executable('ttfautohint'):
call(shlex.split('ttfautohint --symbol --fallback-script=latn --no-info "%(font)s.ttf" "%(font)s-hinted.ttf" && mv "%(font)s-hinted.ttf" "%(font)s.ttf"' % {'font': fontfile}), shell=False)
call(shlex.split('ttfautohint --symbol --fallback-script=latn --no-info "%(font)s.ttf" "%(font)s-hinted.ttf" && mv "%(font)s-hinted.ttf" "%(font)s.ttf"' % {'font': fontfile}))
f = fontforge.open(fontfile + '.ttf')

# SVG
Expand Down Expand Up @@ -133,7 +133,7 @@ def generate(filename):
# EOT
if 'eot' in args['types']:
# eotlitetool.py script to generate IE7-compatible .eot fonts
call(shlex.split('python "%(path)s/../../bin/eotlitetool.py" "%(font)s.ttf" --output "%(font)s.eot"' % {'path': scriptPath, 'font': fontfile}), shell=False)
call(shlex.split('python "%(path)s/../../bin/eotlitetool.py" "%(font)s.ttf" --output "%(font)s.eot"' % {'path': scriptPath, 'font': fontfile}))

# Delete TTF if not needed
if ('ttf' not in args['types']) and woff2_generated:
Expand Down

0 comments on commit 48dc993

Please sign in to comment.