diff options
author | tarek <none@none> | 2009-08-04 11:02:01 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-04 11:02:01 +0200 |
commit | 9fe6021cb2c6da3d0af28da0311033ce008765ad (patch) | |
tree | 0e7e7f26880d30ee94626c460da5166cec03bf73 /setup.py | |
parent | a227478f733dc6d7013c1985c36c83639f4392ce (diff) | |
download | external_python_setuptools-9fe6021cb2c6da3d0af28da0311033ce008765ad.tar.gz external_python_setuptools-9fe6021cb2c6da3d0af28da0311033ce008765ad.tar.bz2 external_python_setuptools-9fe6021cb2c6da3d0af28da0311033ce008765ad.zip |
renamed bootstrap.py to bootstraping.py so it differs from zc.buildout filename
--HG--
branch : distribute
extra : rebase_source : b784247763e9f8814d70ba9ffcf07ceab02a3ba4
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ scripts = [] # if we are installing Distribute using "python setup.py install" # we need to get setuptools out of the way if 'install' in sys.argv[1:]: - from bootstrap import before_install + from bootstraping import before_install before_install() dist = setup( @@ -100,7 +100,7 @@ dist = setup( scripts = scripts, ) if 'install' in sys.argv[1:]: - from bootstrap import after_install + from bootstraping import after_install after_install(dist) |