From f81564fadf779ef2e89de87beb1d57d5dff2df15 Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Mon, 18 Sep 2023 11:12:35 +0200 Subject: [PATCH] font-patcher: Fix typo in logger output Fixes: #1350 Signed-off-by: Fini Jastrow --- font-patcher | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/font-patcher b/font-patcher index de2948374..ab875da2e 100755 --- a/font-patcher +++ b/font-patcher @@ -1144,7 +1144,7 @@ class font_patcher: if our_btb == hhea_btb: metrics = Metric.TYPO if use_typo else Metric.WIN # conforming font elif abs(our_btb - hhea_btb) / our_btb < 0.03: - logger.info("Font vertical metrics slightly off (%.1f%)", (our_btb - hhea_btb) / our_btb * 100.0) + logger.info("Font vertical metrics slightly off (%.1f)", (our_btb - hhea_btb) / our_btb * 100.0) metrics = Metric.TYPO if use_typo else Metric.WIN else: # Try the other metric