diff options
| author | Bnyro <bnyro@tutanota.com> | 2026-07-17 12:26:34 +0200 |
|---|---|---|
| committer | Bnyro <bnyro@tutanota.com> | 2026-07-17 12:27:46 +0200 |
| commit | 2daa4d4815eb29e52a18088640a983c25dc702ce (patch) | |
| tree | b0b9ae7d150c2048dc914b3f256f98b7590277ee | |
| parent | de8f73f43422588163782c956ae244a41f6bbba0 (diff) | |
[fix] qwant: can't fetch engine traits because `engine.about` is no longer a dict
| -rw-r--r-- | searx/engines/qwant.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/qwant.py b/searx/engines/qwant.py index 88216e885..1a7bbc28d 100644 --- a/searx/engines/qwant.py +++ b/searx/engines/qwant.py @@ -318,7 +318,7 @@ def fetch_traits(engine_traits: EngineTraits): from searx.utils import extr resp = get( - about["website"], # pyright: ignore[reportArgumentType] + base_url, # pyright: ignore[reportArgumentType] timeout=5, ) if not resp.ok: |
