Fixed borked User model

This commit is contained in:
Daniel Greenfeld 2015-08-05 19:53:46 -07:00
parent 8d580347d7
commit 8f690d3724

View File

@ -13,7 +13,7 @@ class User(AbstractUser):
# First Name and Last Name do not cover name patterns # First Name and Last Name do not cover name patterns
# around the globe. # around the globe.
name = models.CharField(_("Name of User)", blank=True, max_length=255) name = models.CharField(_("Name of User"), blank=True, max_length=255)
def __str__(self): def __str__(self):
return self.username return self.username