From 2cd7ab1ef6e309b4dd348248385f9753e757d7d0 Mon Sep 17 00:00:00 2001 From: Mike Lissner Date: Mon, 26 Sep 2022 11:17:32 -0700 Subject: [PATCH] Improved migrate help text for the --check option. --- django/core/management/commands/migrate.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py index d98072c66e..1298cfaa30 100644 --- a/django/core/management/commands/migrate.py +++ b/django/core/management/commands/migrate.py @@ -81,7 +81,10 @@ class Command(BaseCommand): "--check", action="store_true", dest="check_unapplied", - help="Exits with a non-zero status if unapplied migrations exist.", + help=( + "Exits with a non-zero status if unapplied migrations exist and does " + "not actually apply migrations." + ), ) parser.add_argument( "--prune",