disable explicit ca_certs

may have added this to support beta.ankiweb.net as python doesn't
support SNI, but it prevents changing cert
This commit is contained in:
Damien Elmes 2014-04-10 14:02:35 +09:00
parent 2802d074bb
commit fcc4df821f

View File

@ -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)