From 27701e6660ae610d7cbc77b25b6a6b57a402b688 Mon Sep 17 00:00:00 2001 From: ekultek Date: Thu, 7 Dec 2017 16:27:15 -0600 Subject: [PATCH] minor update to the output of Tor timesec --- lib/core/common.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index 0c59cdf..8250032 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -330,9 +330,6 @@ def get_page(url, **kwargs): proxies = {} if proxy is not None and "127.0.0.1" in proxy: - lib.core.settings.logger.warning(lib.core.settings.set_color( - "timeout has been set to 40s due to Tor being used" - )) req = requests.get(url, params=headers, proxies=proxies, verify=False, timeout=40) else: req = requests.get(url, params=headers, proxies=proxies, verify=False, timeout=20)