Skip to content

Commit

Permalink
Remove unused fea_path argument, for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesgk committed Nov 17, 2015
1 parent 0f7109f commit 91dd313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Lib/fontmake/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ def main():
parser.add_argument('glyphs_path', metavar='GLYPHS_PATH')
parser.add_argument('-c', '--compatible', action='store_true')
parser.add_argument('-i', '--interpolate', action='store_true')
parser.add_argument('-f', '--fea-path')
args = parser.parse_args()

project = FontProject('src', 'out')
project.run_all(
args.glyphs_path, args.fea_path, args.compatible, args.interpolate)
args.glyphs_path, args.interpolate, args.compatible)


if __name__ == '__main__':
Expand Down
2 changes: 1 addition & 1 deletion Lib/fontmake/font_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def save_ttf(self, ufo):
ttf.save(ttf_path)

def run_all(
self, glyphs_path, fea_path=None, compatible=False, interpolate=False,
self, glyphs_path, interpolate=False, compatible=False,
remove_overlaps=True, preprocess=True):
"""Run toolchain from Glyphs source to OpenType binaries."""

Expand Down

0 comments on commit 91dd313

Please sign in to comment.