Fix: evaluation_listenotes si aucun inscrit

This commit is contained in:
Emmanuel Viennet 2022-01-14 11:18:31 +01:00
parent fa99cbf3d0
commit 69d494c02c
1 changed files with 2 additions and 1 deletions

View File

@ -201,6 +201,7 @@ def do_evaluation_listenotes(
note_sur_20 = tf[2]["note_sur_20"]
hide_groups = tf[2]["hide_groups"]
with_emails = tf[2]["with_emails"]
group_ids = [x for x in tf[2]["group_ids"] if x != ""]
return (
_make_table_notes(
tf[1],
@ -208,7 +209,7 @@ def do_evaluation_listenotes(
format=format,
note_sur_20=note_sur_20,
anonymous_listing=anonymous_listing,
group_ids=tf[2]["group_ids"],
group_ids=group_ids,
hide_groups=hide_groups,
with_emails=with_emails,
mode=mode,