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:
Kevin Carter 2017-08-02 15:08:39 -05:00
parent 7a160f7169
commit 44aa6784a7
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
{% if global_environment_variables is defined %}
{% for key, value in global_environment_variables.iteritems() %}
{% for key, value in global_environment_variables.items() %}
{% if value %}
{{ key }}={{ value }}
{% endif %}