diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-10 08:40:01 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-01-10 08:40:06 +0100 |
commit | 576e19dad1783759e90d1e58dae30acb388e430d (patch) | |
tree | e347fcf93d83454214c61bb0c570e1158dc37795 /searx | |
parent | 3fbefb4d99ee4f8e2705f1537393dced94b53180 (diff) | |
download | searxng-576e19dad1783759e90d1e58dae30acb388e430d.tar.gz searxng-576e19dad1783759e90d1e58dae30acb388e430d.zip |
[fix] add default for "about" engine property
Fixes #732.
Diffstat (limited to 'searx')
-rw-r--r-- | searx/engines/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/searx/engines/__init__.py b/searx/engines/__init__.py index ca3b5d4a8..b762c0dd9 100644 --- a/searx/engines/__init__.py +++ b/searx/engines/__init__.py @@ -44,6 +44,7 @@ ENGINE_DEFAULT_ARGS = { "enable_http": False, "display_error_messages": True, "tokens": [], + "about": {}, } # set automatically when an engine does not have any tab category OTHER_CATEGORY = 'other' |