summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2013-10-15 22:18:45 +0200
committerasciimoo <asciimoo@gmail.com>2013-10-15 22:18:45 +0200
commit1f79a571dd38f93cc5e07c749a1ddeaaa881a7ef (patch)
tree4418fa043238af8f9e899ced2355f51a33201db3 /searx
parent9e1ded688fc1c91c48ae13c071c1971bf006fca6 (diff)
[mod] removed debug messages
Diffstat (limited to 'searx')
-rw-r--r--searx/webapp.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index bfef5f6b6..e0ff9a7d0 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -49,10 +49,8 @@ def index():
return render('index.html')
selected_engines = []
for pd_name,pd in request.form.items():
- print pd
if pd_name.startswith('engine_'):
selected_engines.append(pd_name[7:])
- print selected_engines
query = request.form['q']
results = search(query, request, selected_engines)
return render('results.html', results=results, q=query)