Skip to content

Commit 27f478c

Browse files
committed
add space between names
1 parent ac68b48 commit 27f478c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: bulk_load.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def parse(response):
4848
if (forename := author.find("{http://arxiv.org/OAI/arXiv/}forename")) is None:
4949
forename = author.find("{http://arxiv.org/OAI/arXiv/}forenames")
5050
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
5252
else:
5353
name = author.find("{http://arxiv.org/OAI/arXiv/}keyname").text
5454
data["authors"].append({
@@ -112,4 +112,4 @@ def parse(response):
112112
if resumption_token is None:
113113
break
114114
time.sleep(5)
115-
response = get_response("cs", resumption_token)
115+
response = get_response("cs", resumption_token)

0 commit comments

Comments
 (0)