Explorar el Código

new location worked, now just adding terminal print out

Schultz hace 8 años
padre
commit
5007c86ab3
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2
    0
      gitstats

+ 2
- 0
gitstats Ver fichero

@@ -1630,6 +1630,8 @@ class GitStats:
1630 1630
         # execute git2json for top files
1631 1631
         os.system("cd "+os.path.abspath(args[0])+" && git2json > '"+os.path.abspath(args[-1])+"/top_committed_files.json'")
1632 1632
 
1633
+        print ("Executed git2json on source: %s to location: %s" %(os.path.abspath(args[0]), os.path.abspath(args[-1])))
1634
+
1633 1635
 if __name__=='__main__':
1634 1636
     g = GitStats()
1635 1637
     g.run(sys.argv[1:])