diff options
| author | Bruno ReniƩ | 2013-10-14 16:28:32 +0200 |
|---|---|---|
| committer | Bruno ReniƩ | 2013-10-17 16:08:17 +0200 |
| commit | cc3c16eaa09c7dc63592ae8bf4ee30f1af263be1 (patch) | |
| tree | 8a79ec6669c04410d4e9013400bc1bf9de3c760c | |
| parent | d68700740f052323f731d4bc4b1b17fe9949b029 (diff) | |
| download | django-rest-framework-cc3c16eaa09c7dc63592ae8bf4ee30f1af263be1.tar.bz2 | |
Fix a docstring to reflect what the method does
| -rw-r--r-- | rest_framework/serializers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py index 33db82ee..6801e24d 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -912,7 +912,7 @@ class ModelSerializer(Serializer): def save_object(self, obj, **kwargs): """ - Save the deserialized object and return it. + Save the deserialized object. """ if getattr(obj, '_nested_forward_relations', None): # Nested relationships need to be saved before we can save the |
