From bbf93efa1939682c2af9e3fac03e8c4173523a0d Mon Sep 17 00:00:00 2001 From: Wilhelm Klopp Date: Tue, 13 Jul 2021 05:29:21 +0100 Subject: [PATCH] Refs #23359 -- Corrected showmigrations help text for the --database option. --- django/core/management/commands/showmigrations.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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()