fix: Make "nomcom paths" field CSV-friendly (#4892) (#5401)

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:
Rich Salz 2023-03-26 01:19:49 -04:00 committed by GitHub
parent eb3e3d26a9
commit e1283cec6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 = ''