diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 15:59:31 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-05-24 15:59:31 -0400 |
commit | d189e4d498cf1b00d2d703d05117a75454df70f0 (patch) | |
tree | d2f4fa97ae742f55a2620db0b73ae9dbbf506d94 /setuptools/command/easy_install.py | |
parent | 2faf1e9a78136fe09365e8054f0fc04cdb26db94 (diff) | |
parent | 62e96b0e72c19c087c9de388d6c8897710a3e080 (diff) | |
download | external_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-x | setuptools/command/easy_install.py | 2 |
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): |