Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
schriftgestalt committed Dec 22, 2023
1 parent 9186b09 commit e8c73ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/glyphsLib/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4947,7 +4947,7 @@ def _bracket_layer_name(self):
minValue = rule.get("min", None)
maxValue = rule.get("max", None)
if minValue and maxValue:
ruleStrings.append("%s‹%s‹%s", (floatToString3(minValue), axis.shortAxisTag, floatToString3(maxValue)))
ruleStrings.append("%s‹%s‹%s" % (floatToString3(minValue), axis.shortAxisTag, floatToString3(maxValue)))
elif minValue:
ruleStrings.append("%s‹%s" % (floatToString3(minValue), axis.shortAxisTag))
elif maxValue:
Expand Down

0 comments on commit e8c73ed

Please sign in to comment.