Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:53:41 -04:00
parent 358c7b92c3
commit 6a2d7c84af

View file

@ -1,6 +1,6 @@
{% for section in config -%} {% for section in config -%}
{#- [{{ section.key() }}] -#} {#- [{{ section.key() }}] -#}
{% for key, val in section.items() -%} {% for key, val in section.iteritems() -%}
{{ key }} = {{ val }} {{ key }} = {{ val }}
{% endfor -%} {% endfor -%}
{% endfor -%} {% endfor -%}