Skip to content

Commit

Permalink
Fix broken ufonormalizer call
Browse files Browse the repository at this point in the history
The `ufonormalizerLib` import name changed to `ufonormalizer` in commit 28c50d7.
Line 419 was changed accordingly, but the call on 436 was missed. This commit fixes that.
  • Loading branch information
i-tu committed Nov 22, 2015
1 parent a331aa0 commit beb684a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FDK/Tools/SharedData/FDKScripts/makeInstancesUFO.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def run(args):
if options.doOverlapRemoval or options.doAutoHint: # The defcon library renames glyphs. Need to fix them again.
for instancePath in newInstancesList:
if haveUfONormalizer and options.doNormalize:
ufonormalizerLib.normalizeUFO(instancePath, outputPath=None, onlyModified=False)
ufonormalizer.normalizeUFO(instancePath, outputPath=None, onlyModified=False)

if __name__=='__main__':
try:
Expand Down

1 comment on commit beb684a

@readroberts
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Glad you noticed this before too many people downloaded build b64956.

Please sign in to comment.