diff options
| author | Maxime Turcotte <maxime.turcotte@savoirfairelinux.com> | 2014-06-17 19:07:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-06-19 08:54:59 -0400 |
| commit | 9996158db467f9bef8243fcc36dc3602570e3613 (patch) | |
| tree | bf3b5cb36e3083b84de592d6e9da4fd2d131c5f4 /docs/internals | |
| parent | 63670a474c14b1989f1a3f4ee7fd0fbacb5a764a (diff) | |
Fixed #22835 -- Deprecated NoArgsCommand.
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/deprecation.txt | 4 |
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 |
