From 2d0f027aee04bd6950171043ef5f9cff737a3241 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 19 Mar 2010 14:47:32 +0000 Subject: [PATCH] Small message between each tool command output. --- bootstrap/buildCoriolis.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap/buildCoriolis.py b/bootstrap/buildCoriolis.py index 867ddb3e..aaac20f0 100755 --- a/bootstrap/buildCoriolis.py +++ b/bootstrap/buildCoriolis.py @@ -290,6 +290,7 @@ class ProjectBuilder: sys.exit ( 1 ) project.activateAll() for tool in project.getActives(): + print "\nProcessing tool: \"%s\"." % tool getattr(self,command) ( tool ) else: self._orderTools ( tools ) @@ -297,6 +298,7 @@ class ProjectBuilder: for tool in project.getActives(): getattr(self,command) ( tool ) for tool in self._standalones: + print "\nProcessing tool: \"%s\"." % tool getattr(self,command) ( tool ) return