aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
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)