diff options
| author | pw3t <romain@berthor.fr> | 2014-01-05 22:10:46 +0100 |
|---|---|---|
| committer | pw3t <romain@berthor.fr> | 2014-01-05 22:10:46 +0100 |
| commit | 68364df342e4ba09ca3faf95d938285ea646bd68 (patch) | |
| tree | 85377de1545e48b0a75849e2d205143c71e62f33 /searx/webapp.py | |
| parent | 0d93ad20186937f86ca9101c1c7453e99c282107 (diff) | |
[enh] 1st version of vimeo search engine (need improvments)
Diffstat (limited to 'searx/webapp.py')
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 2d48f2323..9905bce37 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -107,7 +107,7 @@ def index(): if len(result['url']) > 74: result['pretty_url'] = result['url'][:35] + '[..]' + result['url'][-35:] else: - result['pretty_url'] = result['url'] + result['pretty_url'] = result['url'] if request_data.get('format') == 'json': return Response(json.dumps({'query': query, 'results': results}), mimetype='application/json') |