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:
parent
f2aab5b913
commit
f67b629ada
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue