From 3afd6e500fe14be8f430db0ba0e257551fa00695 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 19 Dec 2016 02:58:21 +0000 Subject: [PATCH] bugfix --- embroider.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embroider.py b/embroider.py index 964c907d1..7d8121d20 100644 --- a/embroider.py +++ b/embroider.py @@ -941,7 +941,7 @@ class SatinColumn(EmbroideryElement): node_id = self.node.get("id") if len(self.csp) != 2: - self.fatal("satin column: object %s invalid: expected exactly two sub-paths, but there are %s" % (node_id, len(csp))) + self.fatal("satin column: object %s invalid: expected exactly two sub-paths, but there are %s" % (node_id, len(self.csp))) if self.get_style("fill") is not None: self.fatal("satin column: object %s has a fill (but should not)" % node_id)