[Checkins] SVN: z3c.recipe.eggbasket/trunk/ When the download fails, do not say "Continuing with buildout

Maurits van Rees m.van.rees at zestsoftware.nl
Thu Sep 4 18:15:58 EDT 2008


Log message for revision 90848:
  When the download fails, do not say "Continuing with buildout
  instead" as the downloader just exits then and it is up to the
  calling code or the user to continue the buildout if so wished.
  

Changed:
  U   z3c.recipe.eggbasket/trunk/CHANGES.txt
  U   z3c.recipe.eggbasket/trunk/z3c/recipe/eggbasket/downloader.py

-=-
Modified: z3c.recipe.eggbasket/trunk/CHANGES.txt
===================================================================
--- z3c.recipe.eggbasket/trunk/CHANGES.txt	2008-09-04 21:08:50 UTC (rev 90847)
+++ z3c.recipe.eggbasket/trunk/CHANGES.txt	2008-09-04 22:15:57 UTC (rev 90848)
@@ -1,6 +1,11 @@
 0.4.0 (unreleased)
 ==================
 
+* When the download fails, do not say "Continuing with buildout
+  instead" as the downloader just exits then and it is up to the
+  calling code or the user to continue the buildout if so wished.
+  [maurits]
+
 * When installing the requirements from the tarball, we now look in
   the default index (python cheese shop usually) when the requirements
   can not be met by only the tarball.  This should not happen, but it

Modified: z3c.recipe.eggbasket/trunk/z3c/recipe/eggbasket/downloader.py
===================================================================
--- z3c.recipe.eggbasket/trunk/z3c/recipe/eggbasket/downloader.py	2008-09-04 21:08:50 UTC (rev 90847)
+++ z3c.recipe.eggbasket/trunk/z3c/recipe/eggbasket/downloader.py	2008-09-04 22:15:57 UTC (rev 90848)
@@ -75,7 +75,7 @@
                     links = links)
                 if result is False:
                     log.error("Failed to install required eggs with the tar "
-                              "ball. Continuing with buildout instead.")
+                              "ball.")
             finally:
                 shutil.rmtree(extraction_dir)
                 os.unlink(temp_tarball_name)



More information about the Checkins mailing list