[Python-checkins] r53193 - sandbox/trunk/setuptools/setuptools/command/easy_install.py

phillip.eby python-checkins at python.org
Fri Dec 29 18:41:03 CET 2006


Author: phillip.eby
Date: Fri Dec 29 18:41:03 2006
New Revision: 53193

Modified:
   sandbox/trunk/setuptools/setuptools/command/easy_install.py
Log:
Whoops; dupes were already taken care of elsewhere.


Modified: sandbox/trunk/setuptools/setuptools/command/easy_install.py
==============================================================================
--- sandbox/trunk/setuptools/setuptools/command/easy_install.py	(original)
+++ sandbox/trunk/setuptools/setuptools/command/easy_install.py	Fri Dec 29 18:41:03 2006
@@ -375,8 +375,6 @@
                     dist, script_name,
                     dist.get_metadata('scripts/'+script_name).replace('\r','\n')
                 )
-        # we install wrapper scripts second, so they'll overwrite any dupes
-        # created as a result of exe<->egg roundtripping
         self.install_wrapper_scripts(dist)
 
     def add_output(self, path):
@@ -408,6 +406,8 @@
 
 
 
+
+
     def easy_install(self, spec, deps=False):
         tmpdir = tempfile.mkdtemp(prefix="easy_install-")
         download = None


More information about the Python-checkins mailing list