From 81557b78f0b821f86ae1762863f18bb500858915 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Wed, 29 Jun 2011 15:35:18 -0400 Subject: [PATCH] hours: compact adjustment display format --- hours | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hours b/hours index 412d60f..b8d6f6d 100755 --- a/hours +++ b/hours @@ -156,7 +156,7 @@ def main(argv): hours += adjustments[iso_spec] sys.stdout.write(' (%.1f hours)' % hours) if iso_spec in adjustments and adjustments[iso_spec] != 0.0: - sys.stdout.write(' Adj: %.1f' % adjustments[iso_spec]) + sys.stdout.write(' [%.1f]' % adjustments[iso_spec]) total_hours += hours else: sys.stdout.write('???')