From 0497f929d4e5868d987a1a139a75e5e1fcfcdba0 Mon Sep 17 00:00:00 2001 From: tarek Date: Wed, 5 Aug 2009 22:17:36 +0200 Subject: bootstraping.py -> bootstrapping.py --HG-- branch : distribute extra : rebase_source : b54a39a7e7f17f3275d62d29da37de0776fb7ee3 --- tests/install_test.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tests') diff --git a/tests/install_test.py b/tests/install_test.py index 58b4ebc1..e507a39b 100644 --- a/tests/install_test.py +++ b/tests/install_test.py @@ -2,8 +2,8 @@ import urllib2 import sys import os -if os.path.exists('bootstraping.py'): - print 'bootstraping.py exists in the current dir, aborting' +if os.path.exists('bootstrapping.py'): + print 'bootstrapping.py exists in the current dir, aborting' sys.exit(2) print '**** Starting Test' @@ -14,13 +14,13 @@ if is_jython: import subprocess print 'Downloading bootstrap' -file = urllib2.urlopen('http://nightly.ziade.org/bootstraping.py') -f = open('bootstraping.py', 'w') +file = urllib2.urlopen('http://nightly.ziade.org/bootstrapping.py') +f = open('bootstrapping.py', 'w') f.write(file.read()) f.close() # running it -args = [sys.executable] + ['bootstraping.py'] +args = [sys.executable] + ['bootstrapping.py'] if is_jython: res = subprocess.call(args) else: @@ -28,7 +28,7 @@ else: if res != 0: print '**** Test failed, please send me the output at tarek@ziade.org' - os.remove('bootstraping.py') + os.remove('bootstrapping.py') sys.exit(2) # now checking if Distribute is installed @@ -71,5 +71,5 @@ try: finally: if os.path.exists(script_name): os.remove(script_name) - os.remove('bootstraping.py') + os.remove('bootstrapping.py') -- cgit v1.2.1