From 6a2d7c84afadb2f56cf7858113583f70c9ee9676 Mon Sep 17 00:00:00 2001 From: Eric Renfro Date: Fri, 18 May 2018 00:53:41 -0400 Subject: [PATCH] Fixing config parser --- traefik/files/traefik.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traefik/files/traefik.toml b/traefik/files/traefik.toml index 2bd0fbc..3828702 100644 --- a/traefik/files/traefik.toml +++ b/traefik/files/traefik.toml @@ -1,6 +1,6 @@ {% for section in config -%} {#- [{{ section.key() }}] -#} -{% for key, val in section.items() -%} +{% for key, val in section.iteritems() -%} {{ key }} = {{ val }} {% endfor -%} {% endfor -%}