Skip to content

Commit

Permalink
Merge pull request #25 from frankrolf/master
Browse files Browse the repository at this point in the history
Allow UFO files with trailing slash to be recognized.
  • Loading branch information
typesupply committed Mar 10, 2016
2 parents 979e532 + bf5fa4c commit cf0aeea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion normalization/ufonormalizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def main(args=None):
if args.test:
runTests()
return
inputPath = args.input
inputPath = os.path.normpath(args.input)
outputPath = args.output
onlyModified = not args.all
if inputPath is None:
Expand Down

0 comments on commit cf0aeea

Please sign in to comment.