diff options
| author | Noémi Ványi <kvch@users.noreply.github.com> | 2021-04-16 17:26:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-16 17:26:45 +0200 |
| commit | e56323d3c8a7e1a43bfd6c1f31f5825a5bef2872 (patch) | |
| tree | 928c4c639e11d31ed4683e7dca8a8e795bf6d7bc /searx | |
| parent | 312a51566c2dad852d3d72c563ba66ceeac06985 (diff) | |
| parent | dfc66ff0f0643c49dc9a19b716bb795b5f347d3f (diff) | |
Merge pull request #2759 from ypid/fix/typo
Fix grammar mistake in debug log output
Diffstat (limited to 'searx')
| -rw-r--r-- | searx/engines/google.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/engines/google.py b/searx/engines/google.py index 8c20029a3..8f5b700eb 100644 --- a/searx/engines/google.py +++ b/searx/engines/google.py @@ -243,7 +243,7 @@ def response(resp): if answer: results.append({'answer': ' '.join(answer)}) else: - logger.debug("did not found 'answer'") + logger.debug("did not find 'answer'") # results --> number_of_results try: |