1
0
mirror of https://github.com/searxng/searxng.git synced 2024-09-29 16:10:16 +02:00

[mod] index rendering

This commit is contained in:
asciimoo 2014-02-07 03:15:34 +01:00
parent 9eb31c0186
commit 599c801ecd

View File

@ -103,6 +103,9 @@ def index():
Supported outputs: html, json, csv, rss.
"""
if not request.args and not request.form:
return render('index.html')
try:
search = Search(request)
except: