From c094120f04930590341ee478bf184cdf12b2ea5b Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 29 May 2014 19:50:36 +0200 Subject: [PATCH] Do verify requests --- couchpotato/core/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index 7cc4d1c6..1d9c0c42 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -205,7 +205,7 @@ class Plugin(object): method = 'post' if len(data) > 0 or files else 'get' log.info('Opening url: %s %s, data: %s', (method, url, [x for x in data.keys()] if isinstance(data, dict) else 'with data')) - response = r.request(method, url, verify = False, **kwargs) + response = r.request(method, url, **kwargs) if response.status_code == requests.codes.ok: data = response.content