Merge pull request #2319 from maryokhin/master

Assert fields in `exclude` are model fields
This commit is contained in:
Tom Christie 2014-12-18 17:26:26 +00:00
commit e0096fe80c

View File

@ -880,6 +880,10 @@ class ModelSerializer(Serializer):
exclude = getattr(self.Meta, 'exclude', None)
if exclude is not None:
for field_name in exclude:
assert field_name in fields, (
'The field in the `exclude` option must be a model field. Got %s.' %
field_name
)
fields.remove(field_name)
# Determine the set of model fields, and the fields that they map to.