Fix the conflict of urlparse between python2 and python3

Change-Id: I0d3019347ee9f9905ef18c32d405b35ef93b1da8
This commit is contained in:
brandonzhao 2018-10-29 17:08:40 +08:00
parent 48a4c8b493
commit 4d7b32f749
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