Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:47:31 -04:00
parent 77839fb1d9
commit c3b267c40a

View file

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