first_name = prenom, last_name = nom

This commit is contained in:
Yohann D'ANELLO 2020-07-29 19:03:50 +02:00
parent fc29147c87
commit 92f8fa9607
1 changed files with 2 additions and 2 deletions

View File

@ -99,8 +99,8 @@ class Command(ImportCommand):
"pk": pk_user,
"username": row["pseudo"],
"password": passwd_nk15,
"first_name": row["nom"],
"last_name": row["prenom"],
"first_name": row["prenom"],
"last_name": row["nom"],
"email": row["mail"],
"is_active": True, # temporary
}