Use six.moves.urllib.parse instead of urlparse

To keep Python 3.x compatibility, use six.moves.urllib.parse
to replace urlparse.

Change-Id: Ib82f1f5108e4ec4f420f7a4745ab968df409c11d
This commit is contained in:
tanlin 2014-02-12 11:11:27 +08:00
parent 020daa48bf
commit 56c617d6ad

View File

@ -15,9 +15,9 @@
# limitations under the License.
import json
import urlparse
import falcon
import six.moves.urllib.parse as urlparse
from . import base # noqa