Commit f67b629a authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

Fixed comma splice in auth.User model docstring

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent f2aab5b9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)