summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2014-03-29 16:40:43 +0100
committerAdam Tauber <asciimoo@gmail.com>2014-03-29 16:40:43 +0100
commit879bac8adb181593989a132fabd607f50096473a (patch)
treeb7228532b76fa865061f3d826cdee09104794138 /searx/webapp.py
parent52a817f5c1e8727d9244abb156368d3cbcc0f264 (diff)
[fix] opensearch autocomplete
Diffstat (limited to 'searx/webapp.py')
-rw-r--r--searx/webapp.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index bb6c66ab4..1058d9e65 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -350,7 +350,6 @@ def preferences():
return resp
return render('preferences.html',
- client=settings.get('client', None),
locales=settings['locales'],
current_locale=get_locale(),
current_language=lang or 'all',
@@ -369,7 +368,6 @@ def stats():
return render(
'stats.html',
stats=stats,
- client=settings.get('client', None)
)
@@ -392,8 +390,7 @@ def opensearch():
ret = render('opensearch.xml',
method=method,
- host=get_base_url(),
- client=settings['client'])
+ host=get_base_url())
resp = Response(response=ret,
status=200,