mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-29 04:54:00 +03:00
Merge pull request #2127 from marctc/patch-1
Missing quotes on validate_score example
This commit is contained in:
commit
b39bd7ce91
|
@ -170,7 +170,7 @@ We strongly recommend that you use the namespaced import style of `import serial
|
||||||
The `validate_<field_name>` method hooks that can be attached to serializer classes change their signature slightly and return type. Previously these would take a dictionary of all incoming data, and a key representing the field name, and would return a dictionary including the validated data for that field:
|
The `validate_<field_name>` method hooks that can be attached to serializer classes change their signature slightly and return type. Previously these would take a dictionary of all incoming data, and a key representing the field name, and would return a dictionary including the validated data for that field:
|
||||||
|
|
||||||
def validate_score(self, attrs, source):
|
def validate_score(self, attrs, source):
|
||||||
if attrs[score] % 10 != 0:
|
if attrs['score'] % 10 != 0:
|
||||||
raise serializers.ValidationError('This field should be a multiple of ten.')
|
raise serializers.ValidationError('This field should be a multiple of ten.')
|
||||||
return attrs
|
return attrs
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user