diff options
| author | Kaalleen <reni@allenka.de> | 2025-04-13 18:10:01 +0200 |
|---|---|---|
| committer | Kaalleen <reni@allenka.de> | 2025-04-13 18:10:01 +0200 |
| commit | 7496fc10569d304e175599bc629089c382948a10 (patch) | |
| tree | aedbced873cb0133809475e327d0d6fdf743ac38 | |
| parent | 9557b3f7654210b9bc1e04574bbd3cd9c34c1247 (diff) | |
troubleshoot exchange single quote with double quote
| -rw-r--r-- | lib/extensions/troubleshoot.py | 3 |
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() |
