diff --git a/app/scodoc/sco_synchro_etuds.py b/app/scodoc/sco_synchro_etuds.py index fceeb9de..27acef3d 100644 --- a/app/scodoc/sco_synchro_etuds.py +++ b/app/scodoc/sco_synchro_etuds.py @@ -120,9 +120,11 @@ def formsemestre_synchro_etuds( ) anneeapogee = str(anneeapogee) - if type(etuds) == type(""): + if isinstance(etuds, str): etuds = etuds.split(",") # vient du form de confirmation - if type(inscrits_without_key) == type(""): + elif isinstance(etuds, int): + etuds = [etuds] + if isinstance(inscrits_without_key, str): inscrits_without_key = inscrits_without_key.split(",") ( diff --git a/scotests/demo/noms.txt b/scotests/demo/noms.txt index eb6ea355..6b0221a9 100644 --- a/scotests/demo/noms.txt +++ b/scotests/demo/noms.txt @@ -1,5 +1,5 @@ Martin -Bernard +Richard-Lenoir Thomas Petit Robert @@ -15,27 +15,28 @@ Leroy David Roux Morel -Bertrand +M'Rahi Fournier Girard Fontaine Lambert +Lançon Dupont Bonnet Rousseau Vincent Muller -Lefevre +Lefèvre Faure -Andre +André Mercier -Guerin +Guérin Garcia Boyer Blanc Garnier Chevalier -Francois +François Legrand Gauthier Perrin @@ -46,7 +47,6 @@ Henry Nicolas Roussel Gautier -Mathieu Masson Duval Marchand @@ -54,7 +54,7 @@ Denis Lemaire Dumont Marie -Noel +Noël Meyer Dufour Meunier @@ -63,6 +63,7 @@ Blanchard Brun Riviere Lucas +Giscard d'Estaing Joly Giraud Brunet @@ -80,12 +81,10 @@ Colin Vidal Picard Roger -Fabre Aubert Lemoine Renaud Dumas -Payet Olivier Lacroix Philippe @@ -99,8 +98,6 @@ Leclercq Sanchez Lecomte Rolland -Guillaume -Jean Hubert Dupuy Carpentier @@ -108,7 +105,6 @@ Guillot Berger Perez Dupuis -Louis Moulin Deschamps Vasseur @@ -116,7 +112,6 @@ Huet Boucher Fernandez Fleury -Adam Royer Paris Jacquet @@ -254,7 +249,7 @@ Colas Paul Raymond Guillon -Regnier +Régnier Hardy Imbert Brunel diff --git a/scotests/demo/prenoms-f.txt b/scotests/demo/prenoms-f.txt index cfda8438..ac1c900c 100644 --- a/scotests/demo/prenoms-f.txt +++ b/scotests/demo/prenoms-f.txt @@ -11,6 +11,7 @@ Sylvie Martine Madeleine Nicole +Rêve d'Or Suzanne Hélène Christine diff --git a/scotests/demo/prenoms-h.txt b/scotests/demo/prenoms-h.txt index b3ddbb61..61e44fef 100644 --- a/scotests/demo/prenoms-h.txt +++ b/scotests/demo/prenoms-h.txt @@ -29,4 +29,7 @@ Laurent Frédéric Eric David - +Pierre-François +Jean-Christophe +Derc'hen +Lee-Van's \ No newline at end of file