Replaced 'return' by 'raise' in custom model field docs

Thanks Simon Charette for noticing it. Refs #11162.
This commit is contained in:
Claude Paroz 2012-07-02 10:16:42 +02:00
parent 2cd4cf58d3
commit 784d0c261c
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ database, so we need to be able to process strings and ``Hand`` instances in
Notice that we always return a ``Hand`` instance from this method. That's the Notice that we always return a ``Hand`` instance from this method. That's the
Python object type we want to store in the model's attribute. If anything is Python object type we want to store in the model's attribute. If anything is
going wrong during value conversion, you should return a going wrong during value conversion, you should raise a
:exc:`~django.core.exceptions.ValidationError` exception. :exc:`~django.core.exceptions.ValidationError` exception.
**Remember:** If your custom field needs the :meth:`to_python` method to be **Remember:** If your custom field needs the :meth:`to_python` method to be