[Python-checkins] cpython (3.4): Issue #20568: Fix typo in pip option.

larry.hastings python-checkins at python.org
Mon Mar 17 07:33:12 CET 2014


http://hg.python.org/cpython/rev/3f8ca67bde4d
changeset:   89780:3f8ca67bde4d
branch:      3.4
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Sun Mar 02 19:15:47 2014 +0100
summary:
  Issue #20568: Fix typo in pip option.

files:
  Tools/msi/msi.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -420,7 +420,7 @@
 
     compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests|venv\\scripts" "[TARGETDIR]Lib"'
     lib2to3args = r'-c "import lib2to3.pygram, lib2to3.patcomp;lib2to3.patcomp.PatternCompiler()"'
-    updatepipargs = r'-m ensurepip -U --default-install'
+    updatepipargs = r'-m ensurepip -U --default-pip'
     removepipargs = r'-m ensurepip._uninstall'
     # See "CustomAction Table"
     add_data(db, "CustomAction", [

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list