summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-04-08 08:35:35 -0400
committerTim Graham <timograham@gmail.com>2015-04-08 08:36:41 -0400
commitd11e87bff50a9b53de2fe683740fb875d3d2d9e9 (patch)
tree2b3505a7244e89440861d7c90b92f3635d941ead
parent9e87017a38cbe9de555000278835d8229b1c5bb2 (diff)
[1.8.x] Fixed #24602 -- Removed obsolete reference to __metaclass__ in custom model fields docs.
Thanks schinckel for the report. Backport of 6d7784a7b994eb8287ec851b22acb5170e77a90a from master
-rw-r--r--docs/howto/custom-model-fields.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 4c918f85c0..d1c929b97c 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -339,10 +339,10 @@ incorporate arguments of the field. For example, the description for
Useful methods
--------------
-Once you've created your :class:`~django.db.models.Field` subclass and set up
-the ``__metaclass__``, you might consider overriding a few standard methods,
-depending on your field's behavior. The list of methods below is in
-approximately decreasing order of importance, so start from the top.
+Once you've created your :class:`~django.db.models.Field` subclass, you might
+consider overriding a few standard methods, depending on your field's behavior.
+The list of methods below is in approximately decreasing order of importance,
+so start from the top.
.. _custom-database-types: