Changed urllib to six equivalent

This commit is contained in:
Terry Cain 2017-09-23 00:05:25 +01:00
parent a401b4f36d
commit 983ae57868
No known key found for this signature in database
GPG Key ID: 14D90844E4E9B9F3

View File

@ -1,5 +1,4 @@
from __future__ import unicode_literals
from urllib.parse import urlsplit
import json
import six
import datetime
@ -7,6 +6,7 @@ import datetime
from moto.core.responses import BaseResponse
from moto.core.utils import camelcase_to_underscores, method_names_from_class
from werkzeug.exceptions import HTTPException
from six.moves.urllib.parse import urlsplit
from .models import xray_backends
from .exceptions import AWSError, BadSegmentException