Recognize subclasses of list types

Change-Id: I8b46d11368bf33ad073ed3b28eb2282ee70ffbe3
This commit is contained in:
David Shrewsbury 2016-02-26 16:49:15 -05:00
parent 95af6194dc
commit d097959727

View File

@ -79,7 +79,7 @@ class Task(object):
six.reraise(type(self._exception), self._exception,
self._traceback)
if type(self._result) == list:
if isinstance(self._result, list):
return meta.obj_list_to_dict(self._result)
elif type(self._result) not in (bool, int, float, str, set,
tuple, types.GeneratorType):