diff options
author | tarek <none@none> | 2009-08-09 01:43:15 +0200 |
---|---|---|
committer | tarek <none@none> | 2009-08-09 01:43:15 +0200 |
commit | 031c1dd0bd48d1dda9d83cb135d96b7e92f2089e (patch) | |
tree | 55cdabeb3e41b32da6553372a85327601311feb0 | |
parent | 7f6c43f1b2b82323746457aba0bc2d67278fa9a5 (diff) | |
download | external_python_setuptools-031c1dd0bd48d1dda9d83cb135d96b7e92f2089e.tar.gz external_python_setuptools-031c1dd0bd48d1dda9d83cb135d96b7e92f2089e.tar.bz2 external_python_setuptools-031c1dd0bd48d1dda9d83cb135d96b7e92f2089e.zip |
bitbucket.org bug on download files (cant update them) -> switching the bootstrap.py file to ziade.org
--HG--
branch : distribute
extra : rebase_source : 51abe57834c93614cb579fe42448d1bdcd0c5f78
-rwxr-xr-x | README.txt | 2 | ||||
-rw-r--r-- | buildout/bootstrap.py | 2 | ||||
-rw-r--r-- | docs/setuptools.txt | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -51,7 +51,7 @@ your choice. If your shell has the `wget` program you can do:: - $ wget http://bitbucket.org/tarek/distribute/downloads/distribute_setup.py + $ wget http://nightly.ziade.org/distribute_setup.py $ python distribute_setup.py easy_install or pip diff --git a/buildout/bootstrap.py b/buildout/bootstrap.py index caacf081..d1e69381 100644 --- a/buildout/bootstrap.py +++ b/buildout/bootstrap.py @@ -34,7 +34,7 @@ try: raise ImportError except ImportError: ez = {} - exec urllib2.urlopen('http://bitbucket.org/tarek/distribute/downloads/distribute_setup.py' + exec urllib2.urlopen('http://nightly.ziade.org/distribute_setup.py' ).read() in ez ez['use_setuptools'](to_dir=tmpeggs, download_delay=0) if to_reload: diff --git a/docs/setuptools.txt b/docs/setuptools.txt index db425b60..7de0ab08 100644 --- a/docs/setuptools.txt +++ b/docs/setuptools.txt @@ -15,7 +15,7 @@ including just a single `bootstrap module`_ (an 8K .py file), your package will automatically download and install ``setuptools`` if the user is building your package from source and doesn't have a suitable version already installed. -.. _bootstrap module: http://cdn.bitbucket.org/tarek/distribute/downloads/distribute_setup.py +.. _bootstrap module: http://nightly.ziade.org/distribute_setup.py Feature Highlights: |