summaryrefslogtreecommitdiff
path: root/lib/inx/about.py
blob: c1ce458f34bdc5c4a93845b82f7eef04d107b7d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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_about_inx_file():
    env = build_environment()
    template = env.get_template('about.xml')
    write_inx_file("about", template.render())