aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-11-20 11:52:55 -0500
committerJason R. Coombs <jaraco@jaraco.com>2017-11-20 11:52:55 -0500
commit2ed8ca16d5bb38a72baa96fe00596d402dec9eb0 (patch)
treebf7282d53710805e9bb7dd07b2761f6acbc05600
parente4572e8c828cf5c82e072e01672283b5f27396a4 (diff)
downloadexternal_python_setuptools-2ed8ca16d5bb38a72baa96fe00596d402dec9eb0.tar.gz
external_python_setuptools-2ed8ca16d5bb38a72baa96fe00596d402dec9eb0.tar.bz2
external_python_setuptools-2ed8ca16d5bb38a72baa96fe00596d402dec9eb0.zip
Reference to __main__ is only required for Python 2.6.
-rw-r--r--setuptools/tests/test_develop.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py
index cb4ff4b4..ec67c798 100644
--- a/setuptools/tests/test_develop.py
+++ b/setuptools/tests/test_develop.py
@@ -169,7 +169,7 @@ class TestNamespaces:
install_cmd = [
sys.executable,
'-m',
- 'pip.__main__',
+ 'pip',
'install',
str(pkg_A),
'-t', str(target),