Browse Source

Fix la creation superuser broken

test-front-curly
Gabriel Detraz 8 years ago
parent
commit
2070d3841b
  1. 5
      users/models.py

5
users/models.py

@ -143,9 +143,10 @@ class UserManager(BaseUserManager):
if not linux_user_check(pseudo):
raise ValueError('Username shall only contain [a-z0-9-]')
user = self.model(
user = Adherent(
pseudo=pseudo,
surname=surname,
name=surname,
email=self.normalize_email(email),
)
@ -824,6 +825,8 @@ class Adherent(User):
null=True
)
def get_instance(adherentid, *args, **kwargs):
"""Try to find an instance of `Adherent` with the given id.

Loading…
Cancel
Save