Skip to content

Commit

Permalink
[merge.layout] Optimize log message interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
behdad committed Dec 16, 2021
1 parent 0f10166 commit 30c5a8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/fontTools/merge/layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def merge(self, m, tables):
for i,(table,dups) in enumerate(zip(tables, m.duplicateGlyphsPerFont)):
if not dups: continue
if table is None or table is NotImplemented:
log.warning("Have non-identical duplicates to resolve for '%s' but no GSUB. Are duplicates intended?: %s" % (m.fonts[i].name, dups))
log.warning("Have non-identical duplicates to resolve for '%s' but no GSUB. Are duplicates intended?: %s", m.fonts[i].name, dups)
continue

synthFeature = None
Expand Down

0 comments on commit 30c5a8b

Please sign in to comment.