sbsv2/raptor/python/plugins/filter_terminal.py
branchfix
changeset 414 fdf44dc5eff3
parent 377 4d8988026f7c
equal deleted inserted replaced
404:d420eba6f3a0 414:fdf44dc5eff3
   435 			sys.stdout.write("\n\n")
   435 			sys.stdout.write("\n\n")
   436 
   436 
   437 		if self.warn_count > 0 or self.err_count > 0:
   437 		if self.warn_count > 0 or self.err_count > 0:
   438 			sys.stdout.write("\n%s : warnings: %s\n" % (raptor.name,
   438 			sys.stdout.write("\n%s : warnings: %s\n" % (raptor.name,
   439 					self.warn_count))
   439 					self.warn_count))
   440 			sys.stdout.write("%s : errors: %s\n" % (raptor.name,
   440 			sys.stdout.write("%s : errors: %s\n\n" % (raptor.name,
   441 					self.err_count))
   441 					self.err_count))
   442 		else:
   442 		else:
   443 			sys.stdout.write("\nno warnings or errors\n\n")
   443 			sys.stdout.write("\nno warnings or errors\n\n")
   444 
   444 
   445 		for bc in self.built_configs:
   445 		for bc in self.built_configs: