From fd2d7ac3b618e31435e42894495e758dbb31328c Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 3 Apr 2017 11:43:27 +0800 Subject: [PATCH] GitLogParser.js --- GitLogParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitLogParser.js b/GitLogParser.js index 186f68c0..14712e20 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -261,7 +261,7 @@ for (var desc in totals) { hsum.push({ desc : desc, tot : totals[desc] }); } hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 }); -print("\n\nDay Total (" + htot +')'); +print("\n\nDay Total"); hsum.forEach(function(r) { print (" " + (r.tot.toFixed(2)*1) + " : " + r.desc); }); -- 2.39.2