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