remove the use of iteritems
iteritems is a py2 callable and will break when using py3. Change-Id: I2afbcf273d23a326b81e51620929a512ed17fc22 Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
parent
1a5e775d8e
commit
0e6bcf2a1b
@ -1,6 +1,6 @@
|
|||||||
# {{ ansible_managed }}
|
# {{ ansible_managed }}
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
{% for key, value in lxc_cache_environment.iteritems() %}
|
{% for key, value in lxc_cache_environment.items() %}
|
||||||
Environment={{ key }}={{ value }}
|
Environment={{ key }}={{ value }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
Loading…
Reference in New Issue
Block a user