dropping the significant figures as the default update rate is slower

This commit is contained in:
Tully Foote 2010-06-18 01:41:41 +00:00
parent ee106cc914
commit 8efa25baec
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,7 @@ class Printer:
def rosmake_pkg_times_to_string(self, start_times):
threads = []
for p, t in sorted(start_times.iteritems(), key=itemgetter(1)):
threads.append("[ %s: %.2f sec ]"%(p, time.time() - t))
threads.append("[ %s: %.1f sec ]"%(p, time.time() - t))
return " ".join(threads)