Fixed comma splice in auth.User model docstring

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-06-20 04:14:10 +00:00
parent f2aab5b913
commit f67b629ada
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class UserManager(models.Manager):
class User(models.Model):
"""Users within the Django authentication system are represented by this model.
Username and password are required, other fields are optional.
Username and password are required. Other fields are optional.
"""
username = models.CharField(_('username'), maxlength=30, unique=True, validator_list=[validators.isAlphaNumeric], help_text=_("Required. 30 characters or fewer. Alphanumeric characters only (letters, digits and underscores)."))
first_name = models.CharField(_('first name'), maxlength=30, blank=True)