From 4531e9c02111f35fb9453d5d5c173dcf4743071d Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 18 May 2018 00:49:17 -0400 Subject: [PATCH] Fixing config parser --- traefik/files/traefik.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/traefik/files/traefik.toml b/traefik/files/traefik.toml index c91c3c2..474da95 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -1,5 +1,5 @@ -{% for section in config.items() -%} -[{{ section }}] +{% for section in config -%} +[{{ section.key() }}] {% for key, val in section.items() -%} {{ key }} = {{ val }} {% endfor -%}