diff options
author | PJ Eby <distutils-sig@python.org> | 2006-02-12 23:39:08 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-02-12 23:39:08 +0000 |
commit | 145a56c536fe553a8f1fc5c4a790eab057100c72 (patch) | |
tree | edc2218076b8295b3b6023765c745a5223916100 | |
parent | a24a73e7be4e82afe5d0c96439fdc5432350987f (diff) | |
download | external_python_setuptools-145a56c536fe553a8f1fc5c4a790eab057100c72.tar.gz external_python_setuptools-145a56c536fe553a8f1fc5c4a790eab057100c72.tar.bz2 external_python_setuptools-145a56c536fe553a8f1fc5c4a790eab057100c72.zip |
Expanded download message so people know what file to get, if they're
going to have to fetch it by hand due to restricted or nonexistent
network access.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042341
-rwxr-xr-x | ez_setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ez_setup.py b/ez_setup.py index 833cd100..4b303563 100755 --- a/ez_setup.py +++ b/ez_setup.py @@ -123,8 +123,14 @@ help). I will attempt to download it for you (from %s), but you may need to enable firewall access for this script first. I will start the download in %d seconds. + +(Note: if this machine does not have network access, please obtain the file + + %s + +and place it in this directory before rerunning this script.) ---------------------------------------------------------------------------""", - version, download_base, delay + version, download_base, delay, url ); from time import sleep; sleep(delay) log.warn("Downloading %s", url) src = urllib2.urlopen(url) |