[Python-checkins] r42341 - sandbox/trunk/setuptools/ez_setup.py

phillip.eby python-checkins at python.org
Mon Feb 13 00:39:09 CET 2006


Author: phillip.eby
Date: Mon Feb 13 00:39:08 2006
New Revision: 42341

Modified:
   sandbox/trunk/setuptools/ez_setup.py
Log:
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.


Modified: sandbox/trunk/setuptools/ez_setup.py
==============================================================================
--- sandbox/trunk/setuptools/ez_setup.py	(original)
+++ sandbox/trunk/setuptools/ez_setup.py	Mon Feb 13 00:39:08 2006
@@ -123,8 +123,14 @@
 %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)


More information about the Python-checkins mailing list