Small message between each tool command output.

This commit is contained in:
Jean-Paul Chaput 2010-03-19 14:47:32 +00:00
parent b5c3c0a00e
commit 2d0f027aee
1 changed files with 2 additions and 0 deletions

View File

@ -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