diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-03 07:24:20 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-01-05 11:03:44 +0100 |
commit | 1e195f5b95d4c59105249d66f5d170d40139a461 (patch) | |
tree | 5cb2b7a37d4f3fc95f986c262e4e38c40821d4b9 /docs/conf.py | |
parent | 5d74bf382012c73c701e1a4969e0f420b099db9f (diff) | |
download | searxng-1e195f5b95d4c59105249d66f5d170d40139a461.tar.gz searxng-1e195f5b95d4c59105249d66f5d170d40139a461.zip |
[mod] move group_engines_in_tab to searx.webutils
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index da989e62e..62b541f2f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -39,6 +39,7 @@ exclude_patterns = ['build-templates/*.rst'] import searx.engines import searx.plugins +import searx.webutils searx.engines.load_engines(searx.settings['engines']) jinja_contexts = { @@ -54,7 +55,7 @@ jinja_contexts = { }, } jinja_filters = { - 'group_engines_in_tab': searx.engines.group_engines_in_tab, + 'group_engines_in_tab': searx.webutils.group_engines_in_tab, } # Let the Jinja template in configured_engines.rst access documented_modules |