summaryrefslogtreecommitdiff
path: root/setuptools/command
diff options
context:
space:
mode:
authorphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2006-12-29 17:41:03 +0000
committerphillip.eby <phillip.eby@6015fed2-1504-0410-9fe1-9d1591cc4771>2006-12-29 17:41:03 +0000
commit3787296456d58ca0aa2db5a01c11bd56e66dcff6 (patch)
treea07528b222363163bc5a7f9cf0a3e93c98e3e8d8 /setuptools/command
parentc4bdbf64153b97bb75531954d6b454f4bc5eba3a (diff)
downloadpython-setuptools-3787296456d58ca0aa2db5a01c11bd56e66dcff6.tar.gz
Whoops; dupes were already taken care of elsewhere.
git-svn-id: http://svn.python.org/projects/sandbox/trunk/setuptools@53193 6015fed2-1504-0410-9fe1-9d1591cc4771
Diffstat (limited to 'setuptools/command')
-rwxr-xr-xsetuptools/command/easy_install.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index d376df2..a9727e5 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -375,8 +375,6 @@ Please make the appropriate changes for your system and try again.
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 @@ Please make the appropriate changes for your system and try again.
+
+
def easy_install(self, spec, deps=False):
tmpdir = tempfile.mkdtemp(prefix="easy_install-")
download = None