urlparse is incompatible for python 3

Change-Id: Ie097bbde1abdef2165a5fe5404b6f4d83b292e5b
This commit is contained in:
skseeker 2016-03-07 21:59:51 +05:30 committed by garyk
parent 63a12ec964
commit 515a54f4b1
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
# under the License.
#
import requests
import urlparse
import six.moves.urllib.parse as urlparse
from oslo_config import cfg
from oslo_log import log

View File

@ -22,7 +22,7 @@ import itertools
import logging
import requests
import six
import urlparse
import six.moves.urllib.parse as urlparse
from eventlet import greenpool
from eventlet import pools

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import requests
import urlparse
import six.moves.urllib.parse as urlparse
from oslo_serialization import jsonutils
from oslo_utils import uuidutils

View File

@ -14,7 +14,7 @@
# under the License.
#
import mock
import urlparse
import six.moves.urllib.parse as urlparse
from oslo_config import cfg
from oslo_serialization import jsonutils