From 77839fb1d93ae2d7aa7e490d610ae36dbea0bc1a Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 18 May 2018 00:46:28 -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 b008ed6..a8e19f2 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -1,6 +1,6 @@ -{% for section in config.keys() -%} +{% for section in config -%} [{{ section }}] -{% for key, val in section.iteritems() -%} +{% for key, val in section.items() -%} {{ key }} = {{ val }} {% endfor -%} {% endfor -%}