remove the use of iteritems

iteritems is a py2 callable and will break when using py3.

Change-Id: I8f1909a7537cac0cab307becfb872b2b4cf179dd
Signed-off-by: Kevin Carter <kevin.carter@rackspace.com>
This commit is contained in:
Kevin Carter 2017-08-02 15:07:37 -05:00
parent 42fad6ddd7
commit 6a1cc727bd
No known key found for this signature in database
GPG Key ID: 69FEFFC5E2D9273F

View File

@ -16,7 +16,7 @@ cgroup_device_acl = [
{% endif %}
{% if qemu_conf_dict is defined %}
{% for key, value in qemu_conf_dict.iteritems() %}
{% for key, value in qemu_conf_dict.items() %}
{{ key }} = {{ value }}
{% endfor %}
{% endif %}