bugfix use of 'iteritem' in 2014.7 branch

This commit is contained in:
Jeff Quast 2015-06-08 14:42:42 -07:00
parent 83f853b6ea
commit 2be0180e5e

View file

@ -98,7 +98,7 @@ def present(name,
if vhost_exists:
owner_perms = __salt__['rabbitmq.list_permissions'](name, runas=runas)
for eowner, eperms in owner_perms.iteritem():
for eowner, eperms in owner_perms.iteritems():
if eowner == owner and eperms == [conf, write, read]:
ret['comment'] = 'Nothing to do'
return ret