Skip to content

Commit

Permalink
fix string concat
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Dec 13, 2023
1 parent cc90557 commit ae2790f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/gftools/builder/recipeproviders/googlefonts.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def fontmake_args(self):
args += " --filter DecomposeTransformedComponentsFilter"

if self.config.get("logLevel") != "WARN":
args += " --verbose " + self.config["logLevel"]
args += " --verbose " + self.config["logLevel"].value
if self.config.get("reverseOutlineDirection"):
args += " --keep-direction"
if self.config.get("removeOutlineOverlaps") is False:
Expand Down

0 comments on commit ae2790f

Please sign in to comment.