From 007f760f3cf97a7459f7e7382c643566d81b0fc5 Mon Sep 17 00:00:00 2001 From: Wing Ying Huang Date: Thu, 23 Jul 2015 12:21:23 +1000 Subject: [PATCH] SickBeard.py The new version of Python broke https connections in SickBeard. A simple two line correction will fix this by removing the ssl verification. --- SickBeard.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SickBeard.py b/SickBeard.py index 1dd4a99bb1..809b82bf2e 100755 --- a/SickBeard.py +++ b/SickBeard.py @@ -41,6 +41,9 @@ import time import signal import traceback +# We fix the https connection here by removing ssl verificaton +import ssl +ssl._create_default_https_context = ssl._create_unverified_context import getopt import sickbeard