esc-reporting/esc-analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 8c12b9258b87049a24c2decc3e384554014f190c Author: Xisco Fauli <xiscofa...@libreoffice.org> AuthorDate: Thu Oct 21 10:15:48 2021 +0200 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Thu Oct 21 10:15:48 2021 +0200 esc-analyze: fix analyze_documentation failed with 'committer' Change-Id: I50bd242ddc8f029dd9a4738ee7b371c4fa59e6bb diff --git a/esc-reporting/esc-analyze.py b/esc-reporting/esc-analyze.py index 074e2d5..4b08459 100755 --- a/esc-reporting/esc-analyze.py +++ b/esc-reporting/esc-analyze.py @@ -122,7 +122,7 @@ def util_build_period_stat(xDate, email, base, peopleTarget=None, dataTarget=Non xType = 'contributor' if email: statList['people'][email][base]['total'] += 1 - if statList['people'][email]['isCommitter'] and base != 'ui': + if statList['people'][email]['isCommitter'] and base != 'ui' and base != 'documentation': xType = 'committer' if dataTarget: statList['data'][base][xType]['total'] += 1