Skip to content
Snippets Groups Projects
Commit 76bedfb3 authored by Emmanuel Viennet's avatar Emmanuel Viennet Committed by Iziram
Browse files

Fix: bug synchro apo si 1 seul étudiant

parent 0634dbd0
No related branches found
No related tags found
No related merge requests found
...@@ -149,7 +149,9 @@ get_maquette_url = _PI.get_maquette_url ...@@ -149,7 +149,9 @@ get_maquette_url = _PI.get_maquette_url
get_portal_api_version = _PI.get_portal_api_version get_portal_api_version = _PI.get_portal_api_version
def get_inscrits_etape(code_etape, annee_apogee=None, ntrials=4, use_cache=True): def get_inscrits_etape(
code_etape, annee_apogee=None, ntrials=4, use_cache=True
) -> list[dict]:
"""Liste des inscrits à une étape Apogée """Liste des inscrits à une étape Apogée
Result = list of dicts Result = list of dicts
ntrials: try several time the same request, useful for some bad web services ntrials: try several time the same request, useful for some bad web services
......
...@@ -132,7 +132,7 @@ def formsemestre_synchro_etuds( ...@@ -132,7 +132,7 @@ def formsemestre_synchro_etuds(
if isinstance(etuds, str): if isinstance(etuds, str):
etuds = etuds.split(",") # vient du form de confirmation etuds = etuds.split(",") # vient du form de confirmation
elif isinstance(etuds, int): elif isinstance(etuds, int):
etuds = [etuds] etuds = [str(etuds)]
if isinstance(inscrits_without_key, int): if isinstance(inscrits_without_key, int):
inscrits_without_key = [inscrits_without_key] inscrits_without_key = [inscrits_without_key]
elif isinstance(inscrits_without_key, str): elif isinstance(inscrits_without_key, str):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment