Small message between each tool command output.
This commit is contained in:
parent
b5c3c0a00e
commit
2d0f027aee
|
@ -290,6 +290,7 @@ class ProjectBuilder:
|
||||||
sys.exit ( 1 )
|
sys.exit ( 1 )
|
||||||
project.activateAll()
|
project.activateAll()
|
||||||
for tool in project.getActives():
|
for tool in project.getActives():
|
||||||
|
print "\nProcessing tool: \"%s\"." % tool
|
||||||
getattr(self,command) ( tool )
|
getattr(self,command) ( tool )
|
||||||
else:
|
else:
|
||||||
self._orderTools ( tools )
|
self._orderTools ( tools )
|
||||||
|
@ -297,6 +298,7 @@ class ProjectBuilder:
|
||||||
for tool in project.getActives():
|
for tool in project.getActives():
|
||||||
getattr(self,command) ( tool )
|
getattr(self,command) ( tool )
|
||||||
for tool in self._standalones:
|
for tool in self._standalones:
|
||||||
|
print "\nProcessing tool: \"%s\"." % tool
|
||||||
getattr(self,command) ( tool )
|
getattr(self,command) ( tool )
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue