Fix wording of auth superuser post-migrate handler

This commit is contained in:
Andrew Godwin 2014-01-08 13:06:41 +00:00
parent 64887c644a
commit f343f5e538
1 changed files with 1 additions and 1 deletions

View File

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