null/demo.local.php
[gitlive] / GitLogParser.js
index ef4eebc..aa3fd8a 100644 (file)
@@ -20,6 +20,7 @@ GitLogParser = {
         
         
         }
+        
         var flines = File.read(  filename ).split("\n");        
         //print("loaded");
         // first just convert them..
@@ -247,7 +248,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);
     });