author | Mitch Watrous <watrous@u.washington.edu> |
Fri, 29 Apr 2011 10:15:30 -0700 | |
changeset 7097 | 963ef3f52418 |
parent 7096 | 7357a40d2dde |
child 7098 | bb919b08a773 |
--- a/wscript Fri Apr 29 09:53:35 2011 -0700 +++ b/wscript Fri Apr 29 10:15:30 2011 -0700 @@ -744,7 +744,14 @@ # Print the list of built modules with lines wrapped at 70 characters. print print 'Modules built:' - print textwrap.fill(', '.join(modules_without_prefix)) + i = 1 + for mod in modules_without_prefix: + print mod.ljust(25), + if i == 3: + print + i = 0 + i = i+1 + print print # Write the build status file.