aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-05-24 15:59:31 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-05-24 15:59:31 -0400
commitd189e4d498cf1b00d2d703d05117a75454df70f0 (patch)
treed2f4fa97ae742f55a2620db0b73ae9dbbf506d94 /setuptools/command/easy_install.py
parent2faf1e9a78136fe09365e8054f0fc04cdb26db94 (diff)
parent62e96b0e72c19c087c9de388d6c8897710a3e080 (diff)
downloadexternal_python_setuptools-d189e4d498cf1b00d2d703d05117a75454df70f0.tar.gz
external_python_setuptools-d189e4d498cf1b00d2d703d05117a75454df70f0.tar.bz2
external_python_setuptools-d189e4d498cf1b00d2d703d05117a75454df70f0.zip
Merge with distribute 0.6.42
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index c98be5a2..f29faf9d 100755
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -1276,7 +1276,7 @@ Please make the appropriate changes for your system and try again.""" % (
return # already did it, or don't need to
sitepy = os.path.join(self.install_dir, "site.py")
- source = resource_string(Requirement.parse("setuptools"), "site.py")
+ source = resource_string("setuptools", "site-patch.py")
current = ""
if os.path.exists(sitepy):