summaryrefslogtreecommitdiff
path: root/tests/bash_completion/management/commands/test_command.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bash_completion/management/commands/test_command.py')
-rw-r--r--tests/bash_completion/management/commands/test_command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bash_completion/management/commands/test_command.py b/tests/bash_completion/management/commands/test_command.py
index 91ec36c2af..b2943d33ed 100644
--- a/tests/bash_completion/management/commands/test_command.py
+++ b/tests/bash_completion/management/commands/test_command.py
@@ -3,7 +3,7 @@ from django.core.management.base import BaseCommand
class Command(BaseCommand):
def add_arguments(self, parser):
- parser.add_argument("--list", action="store_true", dest="list", help="Print all options")
+ parser.add_argument("--list", action="store_true", help="Print all options")
def handle(self, *args, **options):
pass