diff options
| author | Léon Tiekötter <leon@tiekoetter.com> | 2025-11-21 11:20:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-21 11:20:10 +0100 |
| commit | e245cade255c53ea08c4a7c3c8ef9ae59231b4cc (patch) | |
| tree | a74801f6abbdd830ae970407d20f4d9b146676a8 /searx/engines/presearch.py | |
| parent | 7c223b32a77c5cf90070c0537cb09030408b0747 (diff) | |
[fix] engines: typo (#5466)
Fix typo in engine timeout definition: 'timout' -> 'timeout'
Diffstat (limited to 'searx/engines/presearch.py')
| -rw-r--r-- | searx/engines/presearch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/presearch.py b/searx/engines/presearch.py index c6abff115..141b292ab 100644 --- a/searx/engines/presearch.py +++ b/searx/engines/presearch.py @@ -140,7 +140,7 @@ def _get_request_id(query, params): if l.territory: headers['Accept-Language'] = f"{l.language}-{l.territory},{l.language};" "q=0.9,*;" "q=0.5" - resp = get(url, headers=headers, timout=5) + resp = get(url, headers=headers, timeout=5) for line in resp.text.split("\n"): if "window.searchId = " in line: |