From f79bbfcdc1b40c01a8295984a0513f9087a4a752 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Mon, 8 Jul 2024 04:10:53 -0400 Subject: [PATCH] Update message --- sherlock/sherlock.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sherlock/sherlock.py b/sherlock/sherlock.py index 1748514c..a4bd5bc7 100644 --- a/sherlock/sherlock.py +++ b/sherlock/sherlock.py @@ -209,11 +209,14 @@ def sherlock( from torrequest import TorRequest # noqa: E402 except ImportError: print("Important!") - print("> Dependencies for --tor and --unique-tor are now optional, and WILL BE DEPRECATED in a future release of Sherlock.") - print("> If you've installed Sherlock via pip, you can install with the dependency with `pip install sherlock-project[tor]`.") - print("> Other packages should refer to their documentation, or install separately with `pip install torrequest`.\n") + print("> --tor and --unique-tor are now DEPRECATED, and may be removed in a future release of Sherlock.") + print("> If you've installed Sherlock via pip, you can include the optional dependency via `pip install sherlock-project[tor]`.") + print("> Other packages should refer to their documentation, or install it separately with `pip install torrequest`.\n") sys.exit(query_notify.finish()) + print("Important!") + print("> --tor and --unique-tor are now DEPRECATED, and may be removed in a future release of Sherlock.")) + # Requests using Tor obfuscation try: underlying_request = TorRequest()