Ver Fonte

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

Thanks Simon Charette for noticing it. Refs #11162.
Claude Paroz há 12 anos atrás
pai
commit
784d0c261c
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      docs/howto/custom-model-fields.txt

+ 1 - 1
docs/howto/custom-model-fields.txt

@@ -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
 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.
 
 **Remember:** If your custom field needs the :meth:`to_python` method to be