Chunk serializer: fix bad error invocation.
This commit is contained in:
parent
f6af96ace6
commit
11001ed62c
@ -117,7 +117,7 @@ class ChunksField(serializers.RelatedField):
|
||||
|
||||
def to_internal_value(self, data):
|
||||
if data[0] is None or data[1] is None:
|
||||
raise EtebaseValidationError('null is not allowed')
|
||||
raise EtebaseValidationError('no_null', 'null is not allowed')
|
||||
return (data[0], b64decode_or_bytes(data[1]))
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user