Fixing config parser
This commit is contained in:
parent
c3b267c40a
commit
4531e9c021
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
{% for section in config.items() -%}
|
{% for section in config -%}
|
||||||
[{{ section }}]
|
[{{ section.key() }}]
|
||||||
{% for key, val in section.items() -%}
|
{% for key, val in section.items() -%}
|
||||||
{{ key }} = {{ val }}
|
{{ key }} = {{ val }}
|
||||||
{% endfor -%}
|
{% endfor -%}
|
||||||
|
|
Loading…
Reference in a new issue