Use six.moves.urllib.parse instead of urlparse

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

Add six as a dependency in test_requirements.txt

Change-Id: Ia6cd042970c2d4e5d418a39e25bab32b4d93c544
This commit is contained in:
tanlin 2014-02-12 11:16:36 +08:00
parent 951d8f366c
commit e621a417b4
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ docutils==0.9.1
discover
fixtures>=0.3.14
python-subunit
six>=1.4.1
testrepository>=0.0.17
testtools>=0.9.32
sphinxcontrib-programoutput

View File

@ -34,11 +34,11 @@ import threading
import time
import urllib
import urllib2
import urlparse
import git
import gear
import fixtures
import six.moves.urllib.parse as urlparse
import statsd
import testtools