diff options
| author | karnigen <karnigen@gmail.com> | 2024-02-07 21:03:57 +0100 |
|---|---|---|
| committer | karnigen <karnigen@gmail.com> | 2024-02-07 21:03:57 +0100 |
| commit | 2be2dd6c6d2abab98ae2ade36c21e60de05102ac (patch) | |
| tree | 3cfa85c641d9ba9d3f864a4d1a5fd116f2be2d41 /lib/inx/outputs.py | |
| parent | 048dc5f396314f82c9e2817f2f86efc4b0234848 (diff) | |
support for modified id and menu
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)) |
