aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command
diff options
context:
space:
mode:
authortarek <none@none>2009-09-13 01:37:33 +0200
committertarek <none@none>2009-09-13 01:37:33 +0200
commit745ef1b0e338b5160274f83900a10a99de46dcdb (patch)
treebebb820ef98c4b2ab30b27dfc5b08b57eeaa31b5 /setuptools/command
parent4fba5767d7d1d844ba0c27d0e3bb0931b621d8bd (diff)
downloadexternal_python_setuptools-745ef1b0e338b5160274f83900a10a99de46dcdb.tar.gz
external_python_setuptools-745ef1b0e338b5160274f83900a10a99de46dcdb.tar.bz2
external_python_setuptools-745ef1b0e338b5160274f83900a10a99de46dcdb.zip
Now install_site works properly with distribute distribution. fixes #44
--HG-- branch : distribute extra : rebase_source : 5dacd496be767ed406f7f8c76a598e7f186acdbc
Diffstat (limited to 'setuptools/command')
-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 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):