aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework/serializers.py
diff options
context:
space:
mode:
authorJohn Whitlock2014-08-13 15:31:25 -0500
committerJohn Whitlock2014-08-13 15:31:25 -0500
commit34c1da3515dbf4e9a0d645ebf81cde6f61254e31 (patch)
treecc43de826817132f5c9e6875ed1ed84825cd1615 /rest_framework/serializers.py
parentc52075f392420356c471860dc07f9371002efe39 (diff)
downloaddjango-rest-framework-34c1da3515dbf4e9a0d645ebf81cde6f61254e31.tar.bz2
ModelSerializer.restore_object - errors as list
When a ValueError is raised in ModelSerializer.restore_object, the error is set to a one-element list, rather than a bare string.
Diffstat (limited to 'rest_framework/serializers.py')
-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 c2b414d7..43d339da 100644
--- a/rest_framework/serializers.py
+++ b/rest_framework/serializers.py
@@ -977,7 +977,7 @@ class ModelSerializer(Serializer):
try:
setattr(instance, key, val)
except ValueError:
- self._errors[key] = self.error_messages['required']
+ self._errors[key] = [self.error_messages['required']]
# Any relations that cannot be set until we've
# saved the model get hidden away on these