summaryrefslogtreecommitdiff
path: root/heatclient/common/http.py
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2013-06-27 13:22:07 +1000
committerAngus Salkeld <asalkeld@redhat.com>2013-06-27 13:22:07 +1000
commita77fd1348d39cbcc6484c165a098182597048d8c (patch)
tree06c6eeb3dd23ce1ffe7baa51ee444c69ef7bb15b /heatclient/common/http.py
parent2fcd4570f35ed13981e8dc7b7eb7b6cc646e531a (diff)
downloadpython-heatclient-a77fd1348d39cbcc6484c165a098182597048d8c.tar.gz
Fix all but H302 hacking rules.
Change-Id: Iac329617428b851df42579d5bd0b299d2f6e2c0a
Diffstat (limited to 'heatclient/common/http.py')
-rw-r--r--heatclient/common/http.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/heatclient/common/http.py b/heatclient/common/http.py
index 099d46c..b91fe9a 100644
--- a/heatclient/common/http.py
+++ b/heatclient/common/http.py
@@ -227,8 +227,7 @@ class VerifiedHTTPSConnection(httplib.HTTPSConnection):
self.insecure = insecure
def connect(self):
- """
- Connect to a host on a given (SSL) port.
+ """Connect to a host on a given (SSL) port.
If ca_file is pointing somewhere, use it to check Server Certificate.
Redefined/copied and extended from httplib.py:1105 (Python 2.6.x).