Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:41:46 -04:00
parent a2573cdf6a
commit cec96b9f06

View file

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