Skip to content
Snippets Groups Projects
Commit 5b5a3681 authored by Paul Milleville's avatar Paul Milleville
Browse files

fix groupe name table access

parent 90c0586a
No related branches found
No related tags found
No related merge requests found
......@@ -283,7 +283,7 @@ def formsemestre_synchro_etuds(
# Appel à la méthode de création de partition
sco_groups.partition_create(formsemestre_id=formsemestre_id, partition_name="Groupe Apogée")
group_names = [group['group_name'] for group in sco_groups.get_partition(partition_id)]
group_names = [group[0]['group_name'] for group in sco_groups.get_partition(partition_id)]
for etu in nip_etape:
print(etu[1] not in group_names)
print(etu[1])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment