Refs #23359 -- Corrected showmigrations help text for the --database option.

This commit is contained in:
Wilhelm Klopp 2021-07-13 05:29:21 +01:00 committed by GitHub
parent 0250340e37
commit bbf93efa19
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -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()