Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:46:28 -04:00
parent 101d68809c
commit 77839fb1d9

View file

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