Merge "Fixed invalid error message"

This commit is contained in:
Jenkins 2015-08-11 01:41:56 +00:00 committed by Gerrit Code Review
commit 11e11cb2d4

View File

@ -330,7 +330,7 @@ class VerifiedHTTPSConnection(httplib.HTTPSConnection):
try:
self.context.load_verify_locations(self.ca_certs)
except Exception as e:
msg = 'Unable to load CA from "%s"' % (self.ca_certs, e)
msg = 'Unable to load CA from "%s" %s' % (self.ca_certs, e)
raise exc.SSLConfigurationError(msg)
else:
self.context.set_default_verify_paths()