From fbd6510d58a47ea0d166c48a82793f05425406e4 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sun, 18 Aug 2013 11:51:25 -0600 Subject: STY: Giant comma spacing fixup. Run the 2to3 ws_comma fixer on *.py files. Some lines are now too long and will need to be broken at some point. OTOH, some lines were already too long and need to be broken at some point. Now seems as good a time as any to do this with open PRs at a minimum. --- tools/commitstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/commitstats.py') 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 -- cgit v1.2.1