From cf1e69b859b10929c09743987d4b20294a2b1839 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Germ=C3=A1n=20P=C3=B3o-Caama=C3=B1o?= Date: Wed, 22 Jun 2011 19:00:24 -0700 Subject: [PATCH] Fixed CSCount which should not count merges MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patches as well s Total* and Dates are counted only if the changeset is not a merge. However, CSCount (ChangeSetCount) was counting everything, which changes a bit the results. Signed-off-by: Germán Póo-Caamaño --- gitdm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitdm b/gitdm index 24b5c96..41b250c 100755 --- a/gitdm +++ b/gitdm @@ -416,7 +416,7 @@ for logpatch in patches: hacker.addtested (p) for hacker in p.reports: hacker.addreport (p) - CSCount += 1 + CSCount += 1 csvdump.AccumulatePatch (p, Aggregate) print >> sys.stderr, 'Grabbing changesets...done ' -- 2.39.5