[enh] proper urls

This commit is contained in:
asciimoo 2013-10-15 22:28:27 +02:00
parent 1f79a571dd
commit 4bf44076d4
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ def response(resp):
search_results = loads(resp.text)
results = []
for res in search_results.get('query', {}).get('search', []):
results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res['title'], 'title': res['title']})
results.append({'url': 'https://en.wikipedia.org/wiki/%s' % res['title'].replace(' ', '_'), 'title': res['title']})
return results