Merge pull request #2241 from IvanAlegre/patch-1

Update serializers.py
This commit is contained in:
Tom Christie 2014-12-10 09:27:58 +00:00
commit fb313f8098

View File

@ -517,7 +517,9 @@ class ListSerializer(BaseSerializer):
"""
List of object instances -> List of dicts of primitive datatypes.
"""
iterable = data.all() if (hasattr(data, 'all')) else data
# Dealing with nested relationships, data can be a Manager,
# so, first get a queryset from the Manager if needed
iterable = data.all() if isinstance(data, models.Manager) else data
return [
self.child.to_representation(item) for item in iterable
]