Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:39:21 -04:00
parent f0d8318443
commit a2573cdf6a
1 changed files with 1 additions and 1 deletions

View File

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