Fix the conflict of urlparse between python2 and python3

Change-Id: I92390cf75aeb463e586fe1e694ab1b3bc0d2d4b1
This commit is contained in:
brandonzhao 2018-10-29 17:25:26 +08:00
parent 9608a30508
commit 17fd1d5bed
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import functools
import random
from time import time, sleep
from urlparse import urlparse
from six.moves.urllib.parse import urlparse
from nose import SkipTest
from contextlib import closing
from gzip import GzipFile