Skip to content

Commit 6c30bf8

Browse files
committed
TL: another fix to bibbot
1 parent d4881a5 commit 6c30bf8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bin/issue_to_bibtex.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636

3737
arxiv_id = url.split('/')[-1]
3838
found, items = get_arxiv_info(arxiv_id, field='id')
39+
if not found:
40+
print(f"I could not find arXiv infos for {url}, maybe try without the version suffix 'v[.]'")
41+
continue
3942
if len(items) > 1:
4043
print(f'I got more than one item back from arXiv for {url}. See what I got:\n' +
4144
'\n'.join([item.title for item in items]) + '\n' +

0 commit comments

Comments
 (0)