summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Beaven <smileychris@gmail.com>2011-05-04 22:56:20 +0000
committerChris Beaven <smileychris@gmail.com>2011-05-04 22:56:20 +0000
commit367e51e6a1d0b6ffe5a9a6f2462ae146ad0b8d4e (patch)
treef188c461d5a6e47d839cb1580a3f9560d8f4060a
parentab0e3cff0eae076558c53f7710942d6aee9724ed (diff)
Tiny grammar fix in createsuperuser command.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16154 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/auth/management/commands/createsuperuser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/management/commands/createsuperuser.py b/django/contrib/auth/management/commands/createsuperuser.py
index 9ab5526852..bcccebe4c3 100644
--- a/django/contrib/auth/management/commands/createsuperuser.py
+++ b/django/contrib/auth/management/commands/createsuperuser.py
@@ -85,7 +85,7 @@ class Command(BaseCommand):
if not username:
input_msg = 'Username'
if default_username:
- input_msg += ' (Leave blank to use %r)' % default_username
+ input_msg += ' (leave blank to use %r)' % default_username
username = raw_input(input_msg + ': ')
if default_username and username == '':
username = default_username