summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorMaxime Turcotte <maxime.turcotte@savoirfairelinux.com>2014-06-17 19:07:54 -0400
committerTim Graham <timograham@gmail.com>2014-06-19 08:54:59 -0400
commit9996158db467f9bef8243fcc36dc3602570e3613 (patch)
treebf3b5cb36e3083b84de592d6e9da4fd2d131c5f4 /docs/internals
parent63670a474c14b1989f1a3f4ee7fd0fbacb5a764a (diff)
Fixed #22835 -- Deprecated NoArgsCommand.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 82ffe4938f..39c42ae7bf 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -38,6 +38,10 @@ about each item can often be found in the release notes of two versions prior.
* Support for :py:mod:`optparse` will be dropped for custom management commands
(replaced by :py:mod:`argparse`).
+* The class :class:`~django.core.management.NoArgsCommand` will be removed. Use
+ :class:`~django.core.management.BaseCommand` instead, which takes no arguments
+ by default.
+
.. _deprecation-removed-in-1.9:
1.9