From ab63c1ccc54a3b1d967b0429ad24d6e0193ac3da Mon Sep 17 00:00:00 2001 From: Daniel Bacher Date: Wed, 14 Feb 2018 13:28:55 +0100 Subject: [PATCH] make role python3 compatible (#24) --- templates/etc/mysql/conf.d/10-extra.cnf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/etc/mysql/conf.d/10-extra.cnf.j2 b/templates/etc/mysql/conf.d/10-extra.cnf.j2 index adc6f96..55f521b 100644 --- a/templates/etc/mysql/conf.d/10-extra.cnf.j2 +++ b/templates/etc/mysql/conf.d/10-extra.cnf.j2 @@ -3,7 +3,7 @@ # ------------------------------------------- [mysqld] -{% for key, value in mysql_extra_configuration.iteritems() %} +{% for key, value in mysql_extra_configuration.items() %} {% if value is defined or value is not none %} {{ key }} = {{ value }} {% else %}