We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4881a5 commit 6c30bf8Copy full SHA for 6c30bf8
bin/issue_to_bibtex.py
@@ -36,6 +36,9 @@
36
37
arxiv_id = url.split('/')[-1]
38
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
42
if len(items) > 1:
43
print(f'I got more than one item back from arXiv for {url}. See what I got:\n' +
44
'\n'.join([item.title for item in items]) + '\n' +
0 commit comments