From cdeefa1de62d5c3e5d92c3f19df8e6213a7143d9 Mon Sep 17 00:00:00 2001 From: Lephenixnoir Date: Thu, 4 Nov 2021 14:46:40 +0100 Subject: [PATCH] fxconv: fix conversion of char-spacing attribute --- fxconv/fxconv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fxconv/fxconv.py b/fxconv/fxconv.py index e6e41c1..bd07e25 100644 --- a/fxconv/fxconv.py +++ b/fxconv/fxconv.py @@ -697,7 +697,7 @@ def convert_topti(input, params): line_height = int(params.get("height", grid.h)) # Default character spacing to 1 - char_spacing = params.get("char-spacing", 1) + char_spacing = int(params.get("char-spacing", "1")) #-- # Encoding blocks