summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2025-04-13 18:10:01 +0200
committerKaalleen <reni@allenka.de>2025-04-13 18:10:01 +0200
commit7496fc10569d304e175599bc629089c382948a10 (patch)
treeaedbced873cb0133809475e327d0d6fdf743ac38 /lib
parent9557b3f7654210b9bc1e04574bbd3cd9c34c1247 (diff)
troubleshoot exchange single quote with double quote
Diffstat (limited to 'lib')
-rw-r--r--lib/extensions/troubleshoot.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/extensions/troubleshoot.py b/lib/extensions/troubleshoot.py
index c69953eb..c3be31b9 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()