diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/fatcat_tools/importers/arxiv.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/python/fatcat_tools/importers/arxiv.py b/python/fatcat_tools/importers/arxiv.py index 38d10da3..be93334c 100644 --- a/python/fatcat_tools/importers/arxiv.py +++ b/python/fatcat_tools/importers/arxiv.py @@ -34,6 +34,7 @@ def parse_arxiv_authors(raw):          if authors[-1].startswith("and "):              authors[-1] = authors[-1][4:]      authors = [latex_to_text(a).strip() for a in authors] +    authors = [a for a in authors if a]      return authors  def test_parse_arxiv_authors(): | 
