summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-18 14:49:51 -0500
committerTim Graham <timograham@gmail.com>2015-01-18 14:49:51 -0500
commit0f169098efd099fd7ae13bd8e14b798530d74da7 (patch)
tree9314c1b68f067c5ef20edc9d180f6ce46af6c45f /docs
parent67a76500a56d6dbe970126e142e02254dad7dbf3 (diff)
Removed BaseCommand.validate() per deprecation timeline; refs #16905.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-management-commands.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index e136f97824..b3451732bb 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -361,13 +361,6 @@ the :meth:`~BaseCommand.handle` method must be implemented.
performed. ``tags`` can be a list of check tags, like ``compatibility`` or
``models``.
-.. method:: BaseCommand.validate(app=None, display_num_errors=False)
-
- .. deprecated:: 1.7
- Replaced with the :djadmin:`check` command
-
- If ``app`` is None, then all installed apps are checked for errors.
-
.. _ref-basecommand-subclasses:
BaseCommand subclasses