blob: f391b546f3fbcb8e6b20ada2f6c2845e211ed5a1 (
plain)
1
2
3
4
5
6
7
8
9
|
from .utils import build_environment, write_inx_file
def generate_info_inx_files():
env = build_environment()
info_inx_files = ['about', 'embroider']
for info in info_inx_files:
template = env.get_template('%s.xml' % info)
write_inx_file(info, template.render())
|