diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2023-02-17 13:16:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-17 13:16:27 +0100 |
commit | 54389a29feb3feea5a868f7b3b83c9718fb71014 (patch) | |
tree | 1331064392744574f8a6fb7dd0e867f76ccaff60 | |
parent | b22355503f5de0a3331dcc9a067474d9ee80599e (diff) | |
parent | bb83036f484652356fa0c0c4ea2ad2952208da6a (diff) | |
download | searxng-54389a29feb3feea5a868f7b3b83c9718fb71014.tar.gz searxng-54389a29feb3feea5a868f7b3b83c9718fb71014.zip |
Merge pull request #2202 from return42/fix-typo
[fix] typo in searx/plugins/tor_check.py
-rw-r--r-- | searx/plugins/tor_check.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/searx/plugins/tor_check.py b/searx/plugins/tor_check.py index ffc105eef..831c90ce5 100644 --- a/searx/plugins/tor_check.py +++ b/searx/plugins/tor_check.py @@ -60,8 +60,7 @@ def post_search(request, search): # No answer, return error search.result_container.answers["tor"] = { "answer": gettext( - "The could not download the list of Tor exit-nodes" - " from https://check.torproject.org/exit-addresses." + "Could not download the list of Tor exit-nodes from: https://check.torproject.org/exit-addresses" ) } return True @@ -76,7 +75,7 @@ def post_search(request, search): if ip_address in node_list: search.result_container.answers["tor"] = { "answer": gettext( - "You are using Tor. It looks like you have this external IP address: {ip_address}.".format( + "You are using Tor and it looks like you have this external IP address: {ip_address}".format( ip_address=ip_address ) ) @@ -84,7 +83,7 @@ def post_search(request, search): else: search.result_container.answers["tor"] = { "answer": gettext( - "You are not using Tor. You have this external IP address: {ip_address}.".format( + "You are not using Tor and you have this external IP address: {ip_address}".format( ip_address=ip_address ) ) |