diff options
| author | Tom Christie | 2015-02-03 00:19:52 +0000 |
|---|---|---|
| committer | Tom Christie | 2015-02-03 00:19:52 +0000 |
| commit | 67933d658e52c19f20c536a58c16c5f90c119a31 (patch) | |
| tree | b8b370d885d6eecd4e8788262aac1eb1e05ad3ee | |
| parent | 0a805d979d95f862e296464efcb74ab5ca2b011a (diff) | |
| parent | 4b65e9e42be068ad3e742692262451f8836f09d3 (diff) | |
| download | django-rest-framework-67933d658e52c19f20c536a58c16c5f90c119a31.tar.bz2 | |
Merge pull request #2503 from tail/missing-space-error-string
Fixed missing whitespace in error string.
| -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 2fd907ec..d76658b0 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -177,7 +177,7 @@ class BaseSerializer(Field): ) assert hasattr(self, 'initial_data'), ( - 'Cannot call `.is_valid()` as no `data=` keyword argument was' + 'Cannot call `.is_valid()` as no `data=` keyword argument was ' 'passed when instantiating the serializer instance.' ) |
