Fix the conflict of urlparse between python2 and python3

Change-Id: I47d7a524afaa3ae74b7c6c2931d8ebb89438c508
This commit is contained in:
brandonzhao 2018-10-26 11:04:07 +08:00
parent 9d1bb44bc9
commit b90bb167e0
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import json
import os
import re
from urlparse import urlparse
from six.moves.urllib.parse import urlparse
import xml.dom.minidom
from proboscis.asserts import *

View File

@ -5,7 +5,7 @@ import re
import six
import sys
import time
from urlparse import urlparse
from six.moves.urllib.parse import urlparse
import xml.dom.minidom
from proboscis import before_class