summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-02 18:47:42 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:10 -0400
commitb4002a214399d8619965f40e153ca3f7dcb20904 (patch)
tree23379028aeb91cb892a62248edb1abaad1f91f46 /docs/internals
parent6eed9ae747a0178de817da2e56bd09e73bee84ad (diff)
Refs #22835 -- Removed NoArgsCommand per deprecation timeline.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 99e293d9a9..3bc858742b 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -130,7 +130,7 @@ details on these changes.
* 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
+* The class ``django.core.management.NoArgsCommand`` will be removed. Use
:class:`~django.core.management.BaseCommand` instead, which takes no arguments
by default.