diff options
Diffstat (limited to 'tools/commitstats.py')
-rw-r--r-- | tools/commitstats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/commitstats.py b/tools/commitstats.py index 775518d9b..a35d7b724 100644 --- a/tools/commitstats.py +++ b/tools/commitstats.py @@ -12,7 +12,7 @@ def get_count(filename, repo): mystr = open(filename).read() result = names.findall(mystr) u = np.unique(result) - count = [(x,result.count(x),repo) for x in u] + count = [(x, result.count(x), repo) for x in u] return count |