mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 17:33:54 +00:00
Fix botched py3 compat change
This commit is contained in:
parent
bd7409046a
commit
3332ad02e0
@ -72,7 +72,7 @@ class ClientFuncsDict(collections.MutableMapping):
|
||||
}
|
||||
pub_data = {}
|
||||
# pull out pub_data if you have it
|
||||
for k, v in six.iteritems(list(kwargs.items())):
|
||||
for k, v in six.iteritems(dict(kwargs)):
|
||||
if k.startswith('__pub_'):
|
||||
pub_data[k] = kwargs.pop(k)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user