From ee23ec7641edd78c876f7ced0df6570091e4761a Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Tue, 5 May 2020 06:20:40 +0200 Subject: [PATCH] Fix import --- apps/member/management/commands/import_olddb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/member/management/commands/import_olddb.py b/apps/member/management/commands/import_olddb.py index 27d0e47..97e00eb 100644 --- a/apps/member/management/commands/import_olddb.py +++ b/apps/member/management/commands/import_olddb.py @@ -149,7 +149,7 @@ class Command(BaseCommand): "country": args[10], "phone_number": args[11], "school": args[12], - "student_class": args[13], + "student_class": args[13].lower().replace('premiere', 'première'), "responsible_name": args[14], "responsible_phone": args[15], "responsible_email": args[16],