From ba4c3bb02c37363ef0378bced59ff92daf04af14 Mon Sep 17 00:00:00 2001 From: Paul Bonaud Date: Thu, 21 Nov 2019 14:04:58 +0100 Subject: compatibility: make the role compatible with Python 3 --- templates/etc/rabbitmq/rabbitmq-env.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 %} -- cgit v1.2.3