summaryrefslogtreecommitdiff
path: root/lib/inx/inputs.py
diff options
context:
space:
mode:
authorkarnigen <karnigen@gmail.com>2024-02-07 21:03:57 +0100
committerkarnigen <karnigen@gmail.com>2024-02-07 21:03:57 +0100
commit2be2dd6c6d2abab98ae2ade36c21e60de05102ac (patch)
tree3cfa85c641d9ba9d3f864a4d1a5fd116f2be2d41 /lib/inx/inputs.py
parent048dc5f396314f82c9e2817f2f86efc4b0234848 (diff)
support for modified id and menu
Diffstat (limited to 'lib/inx/inputs.py')
-rwxr-xr-xlib/inx/inputs.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/inx/inputs.py b/lib/inx/inputs.py
index 3ae0b871..624a8dcc 100755
--- a/lib/inx/inputs.py
+++ b/lib/inx/inputs.py
@@ -14,10 +14,10 @@ def pyembroidery_input_formats():
yield format['extension'], format['description']
-def generate_input_inx_files():
+def generate_input_inx_files(alter_data):
env = build_environment()
template = env.get_template('input.xml')
for format, description in pyembroidery_input_formats():
- name = "input_%s" % format.upper()
- write_inx_file(name, template.render(format=format, description=description))
+ name = f"input_{format.upper()}"
+ write_inx_file(name, template.render(alter_data, format=format, description=description))