From c39ce1f20c010dc08ea8e1fa0261163c4ec12a83 Mon Sep 17 00:00:00 2001 From: Kui Shi Date: Wed, 16 Oct 2013 06:29:05 +0800 Subject: [PATCH] Import httplib from six.moves Partial implement: blueprint py33-support Change-Id: I4e2a7020c726717fa1e28926a04d97066bdf79ec --- heatclient/common/http.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/heatclient/common/http.py b/heatclient/common/http.py index ef84f7da..403a1231 100644 --- a/heatclient/common/http.py +++ b/heatclient/common/http.py @@ -14,12 +14,13 @@ # under the License. import copy -import httplib import logging import os import socket import urlparse +from six.moves import http_client as httplib + try: import ssl except ImportError: