Skip to content

Commit

Permalink
Correct print formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ideasman42 authored Dec 10, 2017
1 parent f2addf4 commit 9b83551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monospacifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def make_monospace(reference, fallback, gscaler, save_to, copy_metrics):
familyname = "{} monospacified for {}".format(cleanup_font_name(fallback.familyname), cleanup_font_name(reference.familyname))
fullname = "{} monospacified for {}".format(cleanup_font_name(fallback.fullname), cleanup_font_name(reference.fullname))

print("!!!", fallback.fontname, "!!!", reference.fontname, "!!!")
print("!!! {} !!! {} !!!".format(fallback.fontname, reference.fontname))
destination = os.path.join(save_to, fontname + ".ttf")
shutil.copy(fallback.path, destination)
fscaler = FontScaler(destination)
Expand Down

0 comments on commit 9b83551

Please sign in to comment.