Skip to content

Commit

Permalink
correct models is_active helptext so it works with Django internation…
Browse files Browse the repository at this point in the history
…alization
  • Loading branch information
Wenze van Klink committed Aug 25, 2015
1 parent 8f040b9 commit 8e6b8b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion authtools/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class AbstractEmailUser(AbstractBaseUser, PermissionsMixin):
'site.'))
is_active = models.BooleanField(_('active'), default=True,
help_text=_('Designates whether this user should be treated as '
'active. Unselect this instead of deleting accounts.'))
'active. Unselect this instead of deleting accounts.'))
date_joined = models.DateTimeField(_('date joined'), default=timezone.now)

objects = UserManager()
Expand Down

0 comments on commit 8e6b8b9

Please sign in to comment.