Fixing config parser
This commit is contained in:
parent
358c7b92c3
commit
6a2d7c84af
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
{% for section in config -%}
|
||||
{#- [{{ section.key() }}] -#}
|
||||
{% for key, val in section.items() -%}
|
||||
{% for key, val in section.iteritems() -%}
|
||||
{{ key }} = {{ val }}
|
||||
{% endfor -%}
|
||||
{% endfor -%}
|
||||
|
|
Loading…
Reference in a new issue