Remove six.moves.urllib

Remove six.moves.urllib replace with python3 urllib.

Change-Id: I376645a8fab74f7348b054a2501e948112bc3cf3
This commit is contained in:
wangzihao 2020-09-23 18:46:13 +08:00 committed by Zihao Wang
parent 3cac584e70
commit e9fe8c503f
3 changed files with 4 additions and 3 deletions

View File

@ -18,13 +18,13 @@
import copy
import logging
from urllib import parse
from oslo_serialization import jsonutils
from oslo_utils import strutils
import re
import requests
import six
from six.moves.urllib import parse
from manilaclient import exceptions

View File

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from six.moves.urllib import parse
from urllib import parse
from manilaclient import api_versions
from manilaclient.common import httpclient

View File

@ -10,8 +10,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from urllib import parse
import six
from six.moves.urllib import parse
class HookableMixin(object):