# HG changeset patch # User casties # Date 1418315061 -3600 # Node ID a7b287122ce8c8f13413a42d08eb868de863a2ac # Parent a71ae589d34277fc587a8b973ad3715f269997d5 relax certificate checking even more. diff -r a71ae589d342 -r a7b287122ce8 SrvTxtUtils.py --- 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)