From fcc4df821fd92389ad8637019fbfec8e819b8f57 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 10 Apr 2014 14:02:35 +0900 Subject: [PATCH] disable explicit ca_certs may have added this to support beta.ankiweb.net as python doesn't support SNI, but it prevents changing cert --- anki/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/sync.py b/anki/sync.py index eb48fd591..7b69569ef 100644 --- a/anki/sync.py +++ b/anki/sync.py @@ -49,7 +49,7 @@ def httpCon(): else: assert 0, "Your distro has not packaged Anki correctly." return httplib2.Http( - timeout=HTTP_TIMEOUT, ca_certs=certs, + timeout=HTTP_TIMEOUT, #ca_certs=certs, proxy_info=HTTP_PROXY, disable_ssl_certificate_validation=not not HTTP_PROXY)