From bdf978d635d0bed496e1209cbbaf0848ad07bdf5 Mon Sep 17 00:00:00 2001 From: Sharon Cousins Giannatto Date: Fri, 11 Aug 2017 09:31:51 -0400 Subject: [PATCH] update authors delimiter to semi-colon --- PubMedAgent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PubMedAgent.py b/PubMedAgent.py index 17d07f7..1a94140 100755 --- a/PubMedAgent.py +++ b/PubMedAgent.py @@ -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