fix xpath syntax

This commit is contained in:
Bryan Bishop 2013-01-16 02:56:06 -06:00
parent 191f00ad9f
commit 9c7da548e1
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ def download_url(url):
else:
if "h1 class=\"articleTitle" in content:
try:
title = tree.xpath("//h1[class='articleTitle']")[0].text
title = tree.xpath("//h1[@class='articleTitle']")[0].text
title = title.encode("ascii", "ignore")
pdf_url = tree.xpath("//a[@title='View the Full Text PDF']/@href")[0]
except: