Fixing config parser

This commit is contained in:
Eric Renfro 2018-05-18 00:59:38 -04:00
parent 52b52882ab
commit 633a8fb93c
1 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
{% for section in config -%}
[{{ section }}]
{#-
{% for key, val in section.iteritems() -%}
{% for key, val in config[section].iteritems() -%}
{{ key }} = {{ val }}
{% endfor -%}
-#}
{% endfor -%}