File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def parse(response):
48
48
if (forename := author .find ("{http://arxiv.org/OAI/arXiv/}forename" )) is None :
49
49
forename = author .find ("{http://arxiv.org/OAI/arXiv/}forenames" )
50
50
if forename is not None :
51
- name = author .find ("{http://arxiv.org/OAI/arXiv/}keyname" ).text + forename .text
51
+ name = author .find ("{http://arxiv.org/OAI/arXiv/}keyname" ).text + " " + forename .text
52
52
else :
53
53
name = author .find ("{http://arxiv.org/OAI/arXiv/}keyname" ).text
54
54
data ["authors" ].append ({
@@ -112,4 +112,4 @@ def parse(response):
112
112
if resumption_token is None :
113
113
break
114
114
time .sleep (5 )
115
- response = get_response ("cs" , resumption_token )
115
+ response = get_response ("cs" , resumption_token )
You can’t perform that action at this time.
0 commit comments