Compare commits

...

1 Commits

Author SHA1 Message Date
Jean-Marie Place 3235e2a912 ignore parcours dans import/export (groupe) 2023-04-19 07:49:49 +02:00
1 changed files with 2 additions and 4 deletions

View File

@ -493,14 +493,12 @@ def etud_add_group_infos(
etud["partitions"][info["partition_id"]] = info
# resume textuel des groupes:
etud["groupes"] = sep.join(
[gr["group_name"] for gr in infos if gr["group_name"] is not None]
)
etud["groupes"] = sep.join([gr["group_name"] for gr in infos if gr["group_name"]])
etud["partitionsgroupes"] = sep.join(
[
(gr["partition_name"] or "") + ":" + gr["group_name"]
for gr in infos
if gr["group_name"] is not None
if gr["group_name"]
]
)