Mercurial > hg > documentViewer
changeset 621:a7b287122ce8
relax certificate checking even more.
author | casties |
---|---|
date | Thu, 11 Dec 2014 17:24:21 +0100 |
parents | a71ae589d342 |
children | bc68ca0d2c0a |
files | SrvTxtUtils.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/SrvTxtUtils.py Thu Dec 11 17:19:45 2014 +0100 +++ b/SrvTxtUtils.py Thu Dec 11 17:24:21 2014 +0100 @@ -280,7 +280,7 @@ for cnt in range(num_tries): try: logging.debug("getHttp(lib2)Data(#%s %ss) url=%s"%(cnt+1,timeout,url)) - h = httplib2.Http(cache=cache, timeout=float(timeout), disable_ssl_certificate_validation=insecure) + h = httplib2.Http(cache=cache, timeout=float(timeout), disable_ssl_certificate_validation=True) if username: h.add_credentials(username, password)