]> git.immae.eu Git - github/fretlink/ansible-clever.git/commitdiff
python3: Change iteritems() to items() to be compatible with py3 10/head
authorPaul Bonaud <paul.bonaud@fretlink.com>
Fri, 21 Sep 2018 09:05:47 +0000 (11:05 +0200)
committerPaul Bonaud <paul.bonaud@fretlink.com>
Fri, 21 Sep 2018 09:05:47 +0000 (11:05 +0200)
templates/env.j2

index d543a81b769b7511db622408ed85a11caf49bebd..6ed6469608a1635015d26ce1a2dd4d25934af6aa 100644 (file)
@@ -1,3 +1,3 @@
-{% for key, value in (clever_base_env | combine(clever_env)).iteritems() %}
+{% for key, value in (clever_base_env | combine(clever_env)).items() %}
 {{ key }}={{ value }}
 {% endfor %}