Skip to content

Commit

Permalink
delimit multiple affiliations by semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
briangow committed Aug 21, 2024
1 parent 8dabf7e commit 31eeac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion physionet-django/console/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2587,7 +2587,7 @@ def get_published_authors(authors):
author.last_name,
author.corresponding_email,
', '.join(author.user.get_emails()),
', '.join([a.name for a in author.affiliations.all()]),
'; '.join([a.name for a in author.affiliations.all()]),
author.approval_datetime,
author.is_corresponding,
author.is_submitting,
Expand Down

0 comments on commit 31eeac2

Please sign in to comment.