Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:42:40 -04:00
parent cec96b9f06
commit 101d68809c

View file

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