summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-01-08 13:06:41 +0000
committerAndrew Godwin <andrew@aeracode.org>2014-01-08 13:06:53 +0000
commitf343f5e5389738cf06ddeef5ca961508f2f8c881 (patch)
tree6223c62ffe3ad39a5a433a6d4e5515e7f3790bd3
parent64887c644a8fe1004a15e27087d4e27c95c90fcd (diff)
Fix wording of auth superuser post-migrate handler
-rw-r--r--django/contrib/auth/management/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/management/__init__.py b/django/contrib/auth/management/__init__.py
index 212946ac54..e801b15eb1 100644
--- a/django/contrib/auth/management/__init__.py
+++ b/django/contrib/auth/management/__init__.py
@@ -130,7 +130,7 @@ def create_superuser(app_config, verbosity=2, interactive=True, db=DEFAULT_DB_AL
from django.core.management import call_command
if not UserModel.objects.exists() and interactive:
- msg = ("\nYou just installed Django's auth system, which means you "
+ msg = ("\nYou have installed Django's auth system, and "
"don't have any superusers defined.\nWould you like to create one "
"now? (yes/no): ")
confirm = input(msg)