Skip to content
Snippets Groups Projects
Commit c4cc4a54 authored by Robert Habermann's avatar Robert Habermann
Browse files

fix bug when HTTPS verification is disabled

parent a682ff00
No related branches found
No related tags found
No related merge requests found
......@@ -767,6 +767,8 @@ class Client(object):
if not os.path.isfile(ca_certs):
raise ValueError("Certificate file does not exist: {0}".format(ca_certs))
self.https_verify = ca_certs
else:
self.https_verify = False
if operation_map:
self.operation_map = operation_map
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment