summaryrefslogtreecommitdiff
path: root/searx/botdetection
diff options
context:
space:
mode:
Diffstat (limited to 'searx/botdetection')
-rw-r--r--searx/botdetection/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/botdetection/config.py b/searx/botdetection/config.py
index 274be77df..5b73afe1c 100644
--- a/searx/botdetection/config.py
+++ b/searx/botdetection/config.py
@@ -319,9 +319,9 @@ def dict_deepupdate(base_dict: dict, upd_dict: dict, names=None):
"""
# pylint: disable=too-many-branches
if not isinstance(base_dict, dict):
- raise TypeError("argument 'base_dict' is not a ditionary type")
+ raise TypeError("argument 'base_dict' is not a dictionary type")
if not isinstance(upd_dict, dict):
- raise TypeError("argument 'upd_dict' is not a ditionary type")
+ raise TypeError("argument 'upd_dict' is not a dictionary type")
if names is None:
names = []