From 7496fc10569d304e175599bc629089c382948a10 Mon Sep 17 00:00:00 2001 From: Kaalleen Date: Sun, 13 Apr 2025 18:10:01 +0200 Subject: [PATCH] troubleshoot exchange single quote with double quote --- lib/extensions/troubleshoot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/extensions/troubleshoot.py b/lib/extensions/troubleshoot.py index c69953eb9..c3be31b93 100644 --- a/lib/extensions/troubleshoot.py +++ b/lib/extensions/troubleshoot.py @@ -101,7 +101,8 @@ class Troubleshoot(InkstitchExtension): text.append(tspan) def _get_or_create_group(self, layer, label): - group = layer.xpath(f".//*[@inkscape:label='{label}']") + + group = layer.xpath(f'.//*[@inkscape:label="{label}"]') if not group: group = inkex.Group()