Wikipedia: fix 'didyoumean'

master
Kill Your TV 2013-08-18 14:28:14 +00:00
parent fde95e9980
commit 190e172252
1 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,8 @@ class Wikipedia(callbacks.Plugin):
'Did you mean "%s"? ') % (search, redirect)
addr = self.registryValue('url', msg.args[0]) + \
didyoumean[0].get('href')
article = utils.web.getUrl(addr)
if not article.startswith('http'):
article = utils.web.getUrl('https://' + addr)
if sys.version_info[0] >= 3:
article = article.decode()
tree = lxml.html.document_fromstring(article)