From cf3932c5769deb34d8dfe39ecf17015a9d9c6013 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Sat, 2 Mar 2013 13:18:24 +0800 Subject: [PATCH] GitLogParser.js --- GitLogParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitLogParser.js b/GitLogParser.js index ef4eebc3..2ac28b87 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -247,7 +247,7 @@ for (var h in GitLogParser.shours) { hsum.push({ desc : desc, tot : (GitLogParser.shours[h][desc]/60000).toFixed(2)*1 }) } hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 }); - print(h+': Total (' + htot +')'); + print("\n\n" + h+': Total (' + htot +')'); hsum.forEach(function(r) { print (" " + r.tot + " : " + r.desc); }); -- 2.39.2