diff options
Diffstat (limited to 'tools/commitstats.py')
-rw-r--r-- | tools/commitstats.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/commitstats.py b/tools/commitstats.py index a3de1a6c5..775518d9b 100644 --- a/tools/commitstats.py +++ b/tools/commitstats.py @@ -14,7 +14,7 @@ def get_count(filename, repo): u = np.unique(result) count = [(x,result.count(x),repo) for x in u] return count - + command = 'svn log -l 2300 > output.txt' os.chdir('..') @@ -33,12 +33,9 @@ os.system(command) count.extend(get_count('output.txt', 'SciKits')) count.sort() - + print("** SciPy and NumPy **") print("=====================") for val in count: print(val) - - - |