logo

searx

My custom branche(s) on searx, a meta-search engine
commit: f48bc8b4e801418b201369e13b9b1fa46f7f7602
parent: 52516dab97143c83bd4e0226a960daf22fdc0031
Author: asciimoo <asciimoo@gmail.com>
Date:   Wed, 23 Oct 2013 21:45:14 +0200

[fix] unused var removed

Diffstat:

Msearx/webapp.py2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/searx/webapp.py b/searx/webapp.py @@ -65,7 +65,6 @@ def index(): request_data = request.args if not request_data.get('q'): return render('index.html') - selected_engines = [] selected_categories = [] for pd_name,pd in request_data.items(): if pd_name.startswith('category_'): @@ -81,7 +80,6 @@ def index(): query = request_data['q'].encode('utf-8') results = search(query, request, selected_categories) if request_data.get('format') == 'json': - # TODO HTTP headers return Response(json.dumps({'query': query, 'results': results}), mimetype='application/json') template = render('results.html' ,results=results