When generating the NomCom volunteer paths, use a plus sign rather than a comma, so that the output is more CSV-friendly. Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
This commit is contained in:
parent
eb3e3d26a9
commit
e1283cec6d
|
@ -531,7 +531,7 @@ def decorate_volunteers_with_qualifications(volunteers, nomcom=None, date=None,
|
|||
qualifications.append('path_2')
|
||||
if v.person in author_qs:
|
||||
qualifications.append('path_3')
|
||||
v.qualifications = ", ".join(qualifications)
|
||||
v.qualifications = "+".join(qualifications)
|
||||
else:
|
||||
for v in volunteers:
|
||||
v.qualifications = ''
|
||||
|
|
Loading…
Reference in a new issue