Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:42:40 -04:00
parent cec96b9f06
commit 101d68809c
1 changed files with 1 additions and 1 deletions

View File

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