diff options
| author | Paul Braeuning <paul@paulgo.io> | 2021-11-17 18:34:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-17 18:34:18 +0100 |
| commit | ae2f6c63f4fbdddee9a89a453ddcd7439a387f13 (patch) | |
| tree | 2afc009dc0cf0ea76f8649dfbf0898aac1c3612f | |
| parent | 08d66804140f860837c9a03d2c0bdedd78b6cd14 (diff) | |
| parent | e1d60051cac413e208ad94d1cd0913fc6e9abcac (diff) | |
Merge pull request #512 from ZetaTom/fix-qwant
[fix] Qwant search query string
| -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 249a1f4e4..0312e518c 100644 --- a/searx/engines/qwant.py +++ b/searx/engines/qwant.py @@ -59,7 +59,7 @@ category_to_keyword = { } # search-url -url = 'https://api.qwant.com/v3/search/{keyword}?q={query}&count={count}&offset={offset}' +url = 'https://api.qwant.com/v3/search/{keyword}?{query}&count={count}&offset={offset}' def request(query, params): """Qwant search request""" |