$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: troy_at_[hidden]
Date: 2008-07-03 09:47:33
Author: troy
Date: 2008-07-03 09:47:33 EDT (Thu, 03 Jul 2008)
New Revision: 47039
URL: http://svn.boost.org/trac/boost/changeset/47039
Log:
tweaks
Text files modified: 
   branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in |     7 ++++---                                 
   1 files changed, 4 insertions(+), 3 deletions(-)
Modified: branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in
==============================================================================
--- branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in	(original)
+++ branches/CMake/release/tools/build/CMake/run_continuous_slave.py.in	2008-07-03 09:47:33 EDT (Thu, 03 Jul 2008)
@@ -21,7 +21,7 @@
                   help="Clean before every build")
 
 parser.add_option("-k", "--keep-rebuilding",
-                  action="store_true", dest="keep-rebuilding", default=False,
+                  action="store_true", dest="keep_rebuilding", default=False,
                   help="Rebuild even if there are no updates to svn")
 
 (options, args) = parser.parse_args()
@@ -71,8 +71,9 @@
             do_build(options.clean_every_time)
         else:
             print "No updates."
-    except:
-        print "Error.  Will retry"
+    except Exception, e:
+        print e
+        print "Error.  Will retry."
     
     print "Sleeping %d seconds" % @BOOST_BUILD_SLAVE_SLEEP_DURATION@
     time.sleep(@BOOST_BUILD_SLAVE_SLEEP_DURATION@)