From 2bf41582896b79697fca88e4d1fb28489d4dada8 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Sun, 24 Jul 2022 09:32:05 +0200 Subject: [PATCH] [mod] rename DEFAULT_GROUP_NAME = 'ungrouped' The previous name 'others' leads to confusion with the **category 'other'**. For clarification: the **category 'other'** lists categories that are not included in ``categories_as_tabs:`` and those that do not belong to any category (also known as **ungrouped**). Signed-off-by: Markus Heiser --- searx/webutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/searx/webutils.py b/searx/webutils.py index b18fd5c6a..a7fe22741 100644 --- a/searx/webutils.py +++ b/searx/webutils.py @@ -153,7 +153,7 @@ def is_flask_run_cmdline(): return frames[-2].filename.endswith('flask/cli.py') -DEFAULT_GROUP_NAME = 'others' +DEFAULT_GROUP_NAME = 'ungrouped' def group_engines_in_tab(engines: Iterable[Engine]) -> List[Tuple[str, Iterable[Engine]]]: