diff options
| author | Nicolas Gelot <nicolas.gelot@e.email> | 2020-02-06 22:40:58 +0100 |
|---|---|---|
| committer | Nicolas Gelot <nicolas.gelot@e.email> | 2020-02-06 22:49:35 +0100 |
| commit | b8b13372c8fd3bfe978a1c724ab98b05348df054 (patch) | |
| tree | 91d0909f3bbcd74025ed1798d26e783fbf1871f1 /searx | |
| parent | 6060ab85f8d920bd25093d70bf0a86920dcd5a9a (diff) | |
Fix deprecated werkzeug import
Close: #1830
Signed-off-by: Nicolas Gelot <nicolas.gelot@e.email>
Diffstat (limited to 'searx')
| -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 aadefe6b9..5ed9f1277 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -47,7 +47,7 @@ except: from html import escape from datetime import datetime, timedelta from time import time -from werkzeug.contrib.fixers import ProxyFix +from werkzeug.middleware.proxy_fix import ProxyFix from flask import ( Flask, request, render_template, url_for, Response, make_response, redirect, send_from_directory |