summaryrefslogtreecommitdiff
path: root/lib/inx/info.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-06-23 10:58:16 +0200
committerGitHub <noreply@github.com>2024-06-23 10:58:16 +0200
commit7a856a77e4d36a077cb1a5a1c50831463a6692a0 (patch)
tree05557c9609ab2c7ea37de161bfa2707804fd1e72 /lib/inx/info.py
parentca07e28effeb7c097e7d99ef8ef925fd204184e0 (diff)
wxpythonify about extension (#3007)
Diffstat (limited to 'lib/inx/info.py')
-rwxr-xr-xlib/inx/info.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/inx/info.py b/lib/inx/info.py
deleted file mode 100755
index dc80c3eb..00000000
--- a/lib/inx/info.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Authors: see git history
-#
-# Copyright (c) 2010 Authors
-# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details.
-
-from .utils import build_environment, write_inx_file
-
-
-def generate_info_inx_files(alter_data):
- env = build_environment()
- info_inx_files = ['about', 'embroider']
- for info in info_inx_files:
- template = env.get_template(f'{info}.xml')
- write_inx_file(info, template.render(alter_data))