diff options
author | Alexandre Flament <alex@al-f.net> | 2022-11-11 21:58:32 +0100 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2022-12-10 09:26:38 +0100 |
commit | b971167ced9623c038188ae7bf5a8085147bc35d (patch) | |
tree | d82d7fb4bad9d67b048bce8985cc4a3f09268503 /searx/webapp.py | |
parent | 34e260f88f561cf26454fe72a10a3a403faf2ff3 (diff) | |
download | searxng-b971167ced9623c038188ae7bf5a8085147bc35d.tar.gz searxng-b971167ced9623c038188ae7bf5a8085147bc35d.zip |
move searx.shared.redisdb to searx.redisdb
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 4f334a9d0..d4206ca16 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -120,7 +120,7 @@ from searx.locales import ( # renaming names from searx imports ... from searx.autocomplete import search_autocomplete, backends as autocomplete_backends from searx.languages import language_codes as languages -from searx.shared.redisdb import initialize as redis_initialize +from searx.redisdb import initialize as redis_initialize from searx.search import SearchWithPlugins, initialize as search_initialize from searx.network import stream as http_stream, set_context_network_name from searx.search.checker import get_result as checker_get_result |