aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authortarek <none@none>2009-08-04 11:02:01 +0200
committertarek <none@none>2009-08-04 11:02:01 +0200
commit9fe6021cb2c6da3d0af28da0311033ce008765ad (patch)
tree0e7e7f26880d30ee94626c460da5166cec03bf73 /setup.py
parenta227478f733dc6d7013c1985c36c83639f4392ce (diff)
downloadexternal_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-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 51e99a83..6d6d79b4 100755
--- a/setup.py
+++ b/setup.py
@@ -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)