From: Alan Knowles Date: Sat, 2 Mar 2013 05:18:24 +0000 (+0800) Subject: GitLogParser.js X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=cf3932c5769deb34d8dfe39ecf17015a9d9c6013 GitLogParser.js --- 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); });