summaryrefslogtreecommitdiff
path: root/extract-build-times.py
diff options
context:
space:
mode:
authorJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-10 08:06:26 +0000
committerJannis Pohlmann <jannis.pohlmann@codethink.co.uk>2012-04-10 08:06:26 +0000
commite9daae34c78af38b2e556203f70ba8c10d1e1f4f (patch)
tree73c25da2c2a49a34f6dabb0752665b554b48e7e2 /extract-build-times.py
parente00ec2e51e69c91e6879496c5864b57d8288af19 (diff)
downloadmorph-e9daae34c78af38b2e556203f70ba8c10d1e1f4f.tar.gz
Show fractions of minutes when listing build times for cached chunks.
Diffstat (limited to 'extract-build-times.py')
-rw-r--r--extract-build-times.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/extract-build-times.py b/extract-build-times.py
index 9b1384de..5bfb24c7 100644
--- a/extract-build-times.py
+++ b/extract-build-times.py
@@ -61,7 +61,7 @@ class ExtractBuildTimes(cliapp.Application):
items = sorted(items, key=lambda x: x[1], reverse=True)
for name, time in items:
- print '%30s: %3.0f mins' % (name, time)
+ print '%30s: %3.1f mins' % (name, time)
if __name__ == '__main__':