GitLogParser.js
[gitlive] / GitLogParser.js
index 6c29d40..4264991 100644 (file)
@@ -235,7 +235,8 @@ if (typeof(Seed.argv[2]) == 'undefined') {
 }
  
 var res = GitLogParser.parse( Seed.argv[2][0] == '/' ? Seed.argv[2] : xDate.Date.parseDate(Seed.argv[2], 'Y-m-d'));
-var totals = { work : 0 , idle: 0, shortidle : 0}
+var totals = { work : 0 , idle: 0, shortidle : 0};
+var unknown = [];
 for (var h in res) {
     for (var p in res[h]) {
         if (p == 'LONGIDLE') {
@@ -258,7 +259,7 @@ for (var h in res) {
         
         //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p );  
         totals.work += Math.floor(res[h][p].total/60000) ;
-        var unknown = [];
+       
         if (h == -1) {
             
             print( "\n" + p + ':' + Math.floor(res[h][p].total/60000) + 'm');