diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2005-11-24 05:20:27 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2005-11-24 05:20:27 +0000 |
| commit | f286461e2aed0bab1edcd8d7f42bbfcfeac74930 (patch) | |
| tree | a1a61b65c88cf01ff760f709dd89e55e373c7e9e | |
| parent | 28fd32318fda234c7788a7a6ec2049f0fbb066d7 (diff) | |
Fixed small typo in User object; thanks David Ascher
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/models/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/models/auth.py b/django/models/auth.py index 21b4c2f146..2595727ad0 100644 --- a/django/models/auth.py +++ b/django/models/auth.py @@ -34,7 +34,7 @@ class User(meta.Model): first_name = meta.CharField(_('first name'), maxlength=30, blank=True) last_name = meta.CharField(_('last name'), maxlength=30, blank=True) email = meta.EmailField(_('e-mail address'), blank=True) - password = meta.CharField(_('password'), maxlength=128, help_text=_("Use '[algo]$[salt]$[hexdigest]")) + password = meta.CharField(_('password'), maxlength=128, help_text=_("Use '[algo]$[salt]$[hexdigest]'")) is_staff = meta.BooleanField(_('staff status'), help_text=_("Designates whether the user can log into this admin site.")) is_active = meta.BooleanField(_('active'), default=True) is_superuser = meta.BooleanField(_('superuser status')) |
