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:
parent
42fad6ddd7
commit
6a1cc727bd
@ -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 %}
|
||||
|
Loading…
Reference in New Issue
Block a user