summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2018-07-02 23:54:57 +0200
committerTim Graham <timograham@gmail.com>2018-07-02 17:54:57 -0400
commiteac9ab7ebb1ce0cbbc79c4cf65e8f70b0635a240 (patch)
treeb188d9e179c1f6b0b8a250c5e1c01bab7a22d1a4 /docs
parent4009e1f2abe6268ba116dd09fbbecfc35b84f89a (diff)
Removed parser.add_arguments() arguments that match the defaults.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-management-commands.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/howto/custom-management-commands.txt b/docs/howto/custom-management-commands.txt
index f20252dc0c..d547bd97e2 100644
--- a/docs/howto/custom-management-commands.txt
+++ b/docs/howto/custom-management-commands.txt
@@ -103,7 +103,6 @@ options can be added in the :meth:`~BaseCommand.add_arguments` method like this:
parser.add_argument(
'--delete',
action='store_true',
- dest='delete',
help='Delete poll instead of closing it',
)