summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
authorMike Lissner <mike@free.law>2022-09-26 11:17:32 -0700
committerGitHub <noreply@github.com>2022-09-26 20:17:32 +0200
commit2cd7ab1ef6e309b4dd348248385f9753e757d7d0 (patch)
tree1d68382b92f23cb147ebe7963d45e234e37fea42 /django/core
parentf4e592e3837f0625bf5327cc8ce8444279b4deb3 (diff)
downloaddjango-2cd7ab1ef6e309b4dd348248385f9753e757d7d0.tar.gz
Improved migrate help text for the --check option.
Diffstat (limited to 'django/core')
-rw-r--r--django/core/management/commands/migrate.py5
1 files changed, 4 insertions, 1 deletions
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",