diff options
| author | tarek <none@none> | 2009-09-13 01:37:33 +0200 |
|---|---|---|
| committer | tarek <none@none> | 2009-09-13 01:37:33 +0200 |
| commit | 745ef1b0e338b5160274f83900a10a99de46dcdb (patch) | |
| tree | bebb820ef98c4b2ab30b27dfc5b08b57eeaa31b5 /setuptools/command/easy_install.py | |
| parent | 4fba5767d7d1d844ba0c27d0e3bb0931b621d8bd (diff) | |
| download | python-setuptools-git-745ef1b0e338b5160274f83900a10a99de46dcdb.tar.gz | |
Now install_site works properly with distribute distribution. fixes #44
--HG--
branch : distribute
extra : rebase_source : 5dacd496be767ed406f7f8c76a598e7f186acdbc
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 0fa07845..67cf949f 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1078,7 +1078,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(Requirement.parse("distribute"), "site.py") current = "" if os.path.exists(sitepy): |
