1
0
mirror of https://github.com/django/django.git synced 2025-01-03 06:55:47 +00:00

Improved --list-tags help text for check management command.

Co-authored-by: David Sanders <shang.xiao.sanders@gmail.com>
This commit is contained in:
David Sanders 2024-01-17 06:30:27 +11:00 committed by GitHub
parent 1592f0ac22
commit 6debeac9e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,10 @@ class Command(BaseCommand):
parser.add_argument(
"--list-tags",
action="store_true",
help="List available tags.",
help=(
"List available tags. Specify --deploy to include available deployment "
"tags."
),
)
parser.add_argument(
"--deploy",