diff options
| author | karnigen <karnigen@gmail.com> | 2024-02-09 14:29:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-09 14:29:06 +0100 |
| commit | e64737382ce749af2db48c9cfd17de7b644429f5 (patch) | |
| tree | a12d11f15c1de7a9731eeca8bdd3af53ba2164a2 /lib/inx/outputs.py | |
| parent | b4f1fb8e8c98be02579bc31343784d70c43c4f48 (diff) | |
| parent | fdc73762adf3989b6c2a77646dc08da72e6c0681 (diff) | |
Merge pull request #2715 from inkstitch/kgn/inkstitch-multiversion-support
Kgn/inkstitch multiversion support
Diffstat (limited to 'lib/inx/outputs.py')
| -rw-r--r-- | lib/inx/outputs.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inx/outputs.py b/lib/inx/outputs.py index 3a4ac9d0..21014744 100644 --- a/lib/inx/outputs.py +++ b/lib/inx/outputs.py @@ -23,10 +23,10 @@ def pyembroidery_output_formats(): yield format['extension'], description, format['mimetype'], format['category'] -def generate_output_inx_files(): +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(): - name = "output_%s" % format.upper() - write_inx_file(name, template.render(format=format, mimetype=mimetype, description=description)) + name = f"output_{format.upper()}" + write_inx_file(name, template.render(alter_data, format=format, mimetype=mimetype, description=description)) |
