remove the use of iteritems
iteritems is a py2 callable and will break when using py3. Change-Id: I1448f8d0909cefb54ea23460a91029100f5a76ff Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
parent
7a160f7169
commit
44aa6784a7
@ -1,5 +1,5 @@
|
|||||||
{% if global_environment_variables is defined %}
|
{% if global_environment_variables is defined %}
|
||||||
{% for key, value in global_environment_variables.iteritems() %}
|
{% for key, value in global_environment_variables.items() %}
|
||||||
{% if value %}
|
{% if value %}
|
||||||
{{ key }}={{ value }}
|
{{ key }}={{ value }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user