diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-06-04 09:53:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-04 09:53:31 +0000 |
| commit | d69c731403773efcc0b97a9cc67c52a615888b0f (patch) | |
| tree | 32cb6302636bca67ffaa2736fbb6a255c3f3b1cf /docs | |
| parent | cac6562a9e3edf8f5e9dffc7b49a730b4eadc634 (diff) | |
| parent | dddf3e2be2a29a0fd2ae19e319f767ef914316da (diff) | |
Merge pull request #132 from searxng/docs-load-engines
[mod] "make docs" doesn't initialize the engines
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index 11e980909..83367229f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,10 +30,9 @@ numfig = True exclude_patterns = ['build-templates/*.rst'] -import searx.search import searx.engines import searx.plugins -searx.search.initialize() +searx.engines.load_engines(searx.settings['engines']) jinja_contexts = { 'searx': { 'engines': searx.engines.engines, |