summaryrefslogtreecommitdiff
path: root/lib/extensions/batch_lettering.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-07-27 07:28:20 +0200
committerGitHub <noreply@github.com>2025-07-27 07:28:20 +0200
commit731ac2868e30dbccf5771abf79564d8bab1156c2 (patch)
tree29f3de6e7694b8ce1cac19756e4f143fd29e8bcd /lib/extensions/batch_lettering.py
parent4dd03c18acbec4c44943c224ea9b66e262e9fd76 (diff)
rename pyembroidery to pystitch (#3889)
... and remove it as a submodule (use pip to install)
Diffstat (limited to 'lib/extensions/batch_lettering.py')
-rw-r--r--lib/extensions/batch_lettering.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/batch_lettering.py b/lib/extensions/batch_lettering.py
index 70beaaf7..c0581e76 100644
--- a/lib/extensions/batch_lettering.py
+++ b/lib/extensions/batch_lettering.py
@@ -14,7 +14,7 @@ from zipfile import ZipFile
from inkex import Boolean, Group, errormsg
from lxml import etree
-import pyembroidery
+import pystitch
from ..extensions.lettering_along_path import TextAlongPath
from ..i18n import _
@@ -69,7 +69,7 @@ class BatchLettering(InkstitchExtension):
if not self.options.formats:
errormsg(_("Please specify at least one output file format"))
return
- available_formats = [file_format['extension'] for file_format in pyembroidery.supported_formats()] + ['svg']
+ available_formats = [file_format['extension'] for file_format in pystitch.supported_formats()] + ['svg']
file_formats = self.options.formats.split(',')
file_formats = [file_format.strip().lower() for file_format in file_formats if file_format.strip().lower() in available_formats]
if not file_formats: