From: Paul Bonaud Date: Thu, 21 Nov 2019 13:04:58 +0000 (+0100) Subject: compatibility: make the role compatible with Python 3 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=sidebyside;h=ba4c3bb02c37363ef0378bced59ff92daf04af14;p=github%2Ffretlink%2Fansible-rabbitmq.git compatibility: make the role compatible with Python 3 --- diff --git a/templates/etc/rabbitmq/rabbitmq-env.conf.j2 b/templates/etc/rabbitmq/rabbitmq-env.conf.j2 index 8eff6f3..60dfa32 100644 --- a/templates/etc/rabbitmq/rabbitmq-env.conf.j2 +++ b/templates/etc/rabbitmq/rabbitmq-env.conf.j2 @@ -1,6 +1,6 @@ # {{ ansible_managed }} # Note that the variables do not have the RABBITMQ_ prefix. # -{% for key,value in rabbitmq_env_config.iteritems() %} +{% for key, value in rabbitmq_env_config.items() %} {{ key }}={{ value }} {% endfor %}