Skip to content
Snippets Groups Projects
Commit d6a01a33 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Solve title length problem

parent a1713c1d
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,8 @@ for paper in paper_list:
if paper.bibcode == "2023arXiv230513380S":
to_remove = paper
#paper.title = paper.title[0]
if len(paper.title) == 1:
paper.title = paper.title[0]
paper.bibstem = paper.bibstem[0]
if hasattr(paper, "page"):
paper.page = paper.page[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment