From: Alan Knowles Date: Fri, 28 Apr 2017 02:39:43 +0000 (+0800) Subject: GitLogParser.js X-Git-Url: http://git.roojs.org/?p=gitlive;a=commitdiff_plain;h=89cbbef890b10a1044e877175a625b647796af0d GitLogParser.js --- diff --git a/GitLogParser.js b/GitLogParser.js index d2d31221..27d8bbe9 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -317,7 +317,7 @@ for (var h in GitLogParser.shours) { hsum.sort(function(a,b) { if (a.tot == b.tot) { return 0; } return a.tot < b.tot ? 1 : -1 }); print("\n\n" + h+': Total (' + htot +')'); hsum.forEach(function(r) { - print (" " + r.tot + " : " + r.desc); + print (" " + r.tot + " : " + (r.project == "Unknown" ? "???" : '') + r.desc); }); }