citation_pdf_url is not always available

This commit is contained in:
Bryan Bishop 2013-02-08 15:23:29 -06:00
parent d400040c10
commit bef66e1241
1 changed files with 2 additions and 1 deletions

View File

@ -168,9 +168,10 @@ def download_url(url):
if citation_pdf_url and "link.aip.org/" in citation_pdf_url:
citation_pdf_url = None
if "ieeexplore.ieee.org" in citation_pdf_url:
if citation_pdf_url and "ieeexplore.ieee.org" in citation_pdf_url:
content = requests.get(citation_pdf_url).content
tree = parse_html(content)
# citation_title = ...
# wow, this seriously needs to be cleaned up
if citation_pdf_url and citation_title and not "ieeexplore.ieee.org" in citation_pdf_url: