summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilhelm Klopp <wilhelmklopp@users.noreply.github.com>2021-07-13 05:29:21 +0100
committerGitHub <noreply@github.com>2021-07-13 06:29:21 +0200
commitbbf93efa1939682c2af9e3fac03e8c4173523a0d (patch)
tree02745b555f00b9af3c8e2f205b740d1c82b4882e
parent0250340e372f652c4f276e6874d452d683c94dfe (diff)
Refs #23359 -- Corrected showmigrations help text for the --database option.
-rw-r--r--django/core/management/commands/showmigrations.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/django/core/management/commands/showmigrations.py b/django/core/management/commands/showmigrations.py
index fa14edbbcc..e3227457ce 100644
--- a/django/core/management/commands/showmigrations.py
+++ b/django/core/management/commands/showmigrations.py
@@ -17,7 +17,10 @@ class Command(BaseCommand):
)
parser.add_argument(
'--database', default=DEFAULT_DB_ALIAS,
- help='Nominates a database to synchronize. Defaults to the "default" database.',
+ help=(
+ 'Nominates a database to show migrations for. Defaults to the '
+ '"default" database.'
+ ),
)
formats = parser.add_mutually_exclusive_group()