Fixed CSCount which should not count merges

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 <gpoo@gnome.org>
This commit is contained in:
Germán Póo-Caamaño 2011-06-22 19:00:24 -07:00
parent 7b26ae2109
commit cf1e69b859
1 changed files with 1 additions and 1 deletions

2
gitdm
View File

@ -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 '