From a6eeee02056aa9e7bcfeeea9f6470953818841e6 Mon Sep 17 00:00:00 2001 From: Mario Voigt Date: Fri, 2 Apr 2021 10:19:27 +0200 Subject: [PATCH] fixed str() cast in applytransform extension --- extensions/fablabchemnitz/applytransform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/fablabchemnitz/applytransform.py b/extensions/fablabchemnitz/applytransform.py index ade9d665..9a8abb87 100644 --- a/extensions/fablabchemnitz/applytransform.py +++ b/extensions/fablabchemnitz/applytransform.py @@ -72,7 +72,7 @@ class ApplyTransform(inkex.EffectExtension): d = node.get('d') p = CubicSuperPath(d) p = Path(p).to_absolute().transform(transf, True) - node.set('d', Path(CubicSuperPath(p).to_path())) + node.set('d', str(Path(CubicSuperPath(p).to_path()))) self.scaleStrokeWidth(node, transf)