diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-12-25 23:31:51 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2016-12-25 23:31:51 +0100 |
commit | 14f58bdaecb288ac65782b2025e765c514b1844e (patch) | |
tree | e3cd29c6d4fa5a1594e5c758a80f83d292988189 /searx/webapp.py | |
parent | a98bbefbcf89ad8d5959c0ddd1c02ab65b92913d (diff) | |
download | searxng-14f58bdaecb288ac65782b2025e765c514b1844e.tar.gz searxng-14f58bdaecb288ac65782b2025e765c514b1844e.zip |
[fix] robot tests ++ set default value for server http protocol version
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 f8253ec00..8f02a034e 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -81,7 +81,7 @@ except ImportError: # serve pages with HTTP/1.1 from werkzeug.serving import WSGIRequestHandler -WSGIRequestHandler.protocol_version = "HTTP/{}".format(settings['server']['http_protocol_version']) +WSGIRequestHandler.protocol_version = "HTTP/{}".format(settings['server'].get('http_protocol_version', '1.0')) static_path, templates_path, themes =\ get_themes(settings['ui']['themes_path'] |