Merge "Switch all uses of httplib to import from six"

This commit is contained in:
Jenkins 2015-04-29 02:38:56 +00:00 committed by Gerrit Code Review
commit 80f4e18627
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,6 @@
import copy
import hashlib
import httplib
import json
import posixpath
import re
@ -28,6 +27,7 @@ import OpenSSL
from oslo_log import log as logging
import six
from six import moves
from six.moves import http_client as httplib
from six.moves.urllib import parse as urlparse
from tempest_lib import exceptions as lib_exc

View File

@ -13,9 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
import httplib
import urllib
from six.moves import http_client as httplib
from six.moves.urllib import parse as urlparse
from tempest.common import service_client

View File

@ -13,13 +13,13 @@
# License for the specific language governing permissions and limitations
# under the License.
import httplib
import json
import socket
import mock
from oslotest import mockpatch
import six
from six.moves import http_client as httplib
from tempest_lib import exceptions as lib_exc
from tempest.common import glance_http