moved WA to try_isgd()

This commit is contained in:
Luke Rogers 2013-09-05 10:33:03 +12:00
parent e061427207
commit 4460254f28

View file

@ -20,10 +20,7 @@ def wolframalpha(inp, bot=None):
# get the URL for a user to view this query in a browser
query_url = "http://www.wolframalpha.com/input/?i=" + \
http.quote_plus(inp.encode('utf-8'))
try:
short_url = web.isgd(query_url)
except (web.ShortenError, http.HTTPError):
short_url = query_url
short_url = web.try_isgd(query_url)
pod_texts = []
for pod in result.xpath("//pod[@primary='true']"):