Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:49:17 -04:00
parent c3b267c40a
commit 4531e9c021

View file

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