aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorJ. Iván Alegre2014-12-10 10:13:15 +0100
committerJ. Iván Alegre2014-12-10 10:13:15 +0100
commit428630c19702172beba94a3381d91340aa5e3bd6 (patch)
treee262145b6cc9afcc5c8050ca800399bc6db3bc65 /rest_framework
parent9161e5a9276b185375e9ab7ec188112f6fe49cf0 (diff)
downloaddjango-rest-framework-428630c19702172beba94a3381d91340aa5e3bd6.tar.bz2
Fix trailing space
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/serializers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py
index e1711259..9226895e 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -517,7 +517,7 @@ class ListSerializer(BaseSerializer):
"""
List of object instances -> List of dicts of primitive datatypes.
"""
- # Dealing with nested relationships, data can be a Manager,
+ # 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 [