Skip to content

Commit

Permalink
update authors delimiter to semi-colon
Browse files Browse the repository at this point in the history
  • Loading branch information
sGiannatto committed Aug 11, 2017
1 parent 3e8b52b commit bdf978d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PubMedAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def getReferenceInfo(self, pubMedID):
pubMedRef.setVolume(value)

pubMedRef.setAbstract(string.join(abList))
pubMedRef.setAuthors(string.join(auList, ', '))
pubMedRef.setAuthors(string.join(auList, '; '))
pubMedRef.setTitle(string.join(tiList))

return pubMedRef

0 comments on commit bdf978d

Please sign in to comment.