Fix botched py3 compat change

This commit is contained in:
Thomas Jackson 2015-02-06 08:18:44 -08:00
parent bd7409046a
commit 3332ad02e0

View File

@ -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)