summaryrefslogtreecommitdiff
path: root/lib/inx/outputs.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/inx/outputs.py')
-rw-r--r--lib/inx/outputs.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/inx/outputs.py b/lib/inx/outputs.py
index 0cf9ac84..51907f79 100644
--- a/lib/inx/outputs.py
+++ b/lib/inx/outputs.py
@@ -3,13 +3,13 @@
# Copyright (c) 2010 Authors
# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
-import pyembroidery
+import pystitch
from .utils import build_environment, write_inx_file
-def pyembroidery_output_formats():
- for format in pyembroidery.supported_formats():
+def pystitch_output_formats():
+ for format in pystitch.supported_formats():
if 'writer' in format:
description = format['description']
if format['category'] == "color":
@@ -30,6 +30,6 @@ def generate_output_inx_files(alter_data):
env = build_environment()
template = env.get_template('output.xml')
- for format, description, mimetype, category in pyembroidery_output_formats():
+ for format, description, mimetype, category in pystitch_output_formats():
name = f"output_{format.upper()}"
write_inx_file(name, template.render(alter_data, format=format, mimetype=mimetype, description=description))