From a3d7369576e0c59a331620f336bf77a760be8244 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Thu, 15 Oct 2015 17:11:44 -0500 Subject: [PATCH] Disable warning in downloadutils For insecure ssl connections --- resources/lib/DownloadUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/DownloadUtils.py b/resources/lib/DownloadUtils.py index 0c07dff6..94010800 100644 --- a/resources/lib/DownloadUtils.py +++ b/resources/lib/DownloadUtils.py @@ -12,7 +12,7 @@ from requests.packages.urllib3.exceptions import InsecureRequestWarning # Disable requests logging requests.packages.urllib3.disable_warnings(InsecureRequestWarning) -logging.getLogger("requests").setLevel(logging.WARNING) +#logging.getLogger("requests").setLevel(logging.WARNING) class DownloadUtils():