diff options
author | Alexandre Flament <alex@al-f.net> | 2022-12-14 07:08:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 07:08:19 +0100 |
commit | 9e9f57e48bbc3c07d49dad57bb851f59f1c7def8 (patch) | |
tree | b38098d532b4279ad625523973a54830970bcb1b /searx/plugins | |
parent | 966e9c3c5d435c473521c332e4ed464d2ff4187e (diff) | |
parent | 3050e2b6e875ccfb0162e83075802467c527c7fe (diff) | |
download | searxng-9e9f57e48bbc3c07d49dad57bb851f59f1c7def8.tar.gz searxng-9e9f57e48bbc3c07d49dad57bb851f59f1c7def8.zip |
Merge pull request #1954 from dalf/fix.redis.init.2
[fix] follow up of PR-1856
Diffstat (limited to 'searx/plugins')
-rw-r--r-- | searx/plugins/limiter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/plugins/limiter.py b/searx/plugins/limiter.py index c11fd506b..b66a0805c 100644 --- a/searx/plugins/limiter.py +++ b/searx/plugins/limiter.py @@ -16,7 +16,7 @@ Enable the plugin in ``settings.yml``: import re from flask import request -from searx.shared import redisdb +from searx import redisdb from searx.redislib import incr_sliding_window name = "Request limiter" |