aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual_test.py')
-rw-r--r--tests/manual_test.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/manual_test.py b/tests/manual_test.py
index e6489b1c..af4ec09b 100644
--- a/tests/manual_test.py
+++ b/tests/manual_test.py
@@ -7,7 +7,8 @@ import tempfile
import subprocess
from distutils.command.install import INSTALL_SCHEMES
from string import Template
-from setuptools.compat import urlopen
+
+from six.moves import urllib
def _system_call(*args):
assert subprocess.call(args) == 0
@@ -76,7 +77,7 @@ def test_full():
f.write(SIMPLE_BUILDOUT)
with open('bootstrap.py', 'w') as f:
- f.write(urlopen(BOOTSTRAP).read())
+ f.write(urllib.request.urlopen(BOOTSTRAP).read())
_system_call('bin/python', 'bootstrap.py')
_system_call('bin/buildout', '-q')