]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
ez_setup.py: don't warn about the need to download packages (because we actually...
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 03:00:27 +0000 (20:00 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 14 Sep 2007 03:00:27 +0000 (20:00 -0700)
ez_setup.py

index 94d26b64415db20afcdb05418d64bf0d0ef21423..4c1b697861112f1880063caa2ca779cfa6d4aaf6 100644 (file)
@@ -96,22 +96,6 @@ def download_setuptools(
     if not os.path.exists(saveto):  # Avoid repeated downloads
         try:
             from distutils import log
-            if True:
-                log.warn("""
----------------------------------------------------------------------------
-This script requires setuptools version %s to run (even to display
-help).  I will attempt to download it for you (from
-%s), but
-you may need to enable firewall access for this script first.
-
-(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, url
-                );
             log.warn("Downloading %s", url)
             src = urllib2.urlopen(url)
             # Read/write all in one block, so we don't create a corrupt file