Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:39:21 -04:00
parent f0d8318443
commit a2573cdf6a

View file

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