You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2021/02/03 11:51:59 UTC

svn commit: r1886153 - /subversion/trunk/tools/dev/contribulyze.py

Author: danielsh
Date: Wed Feb  3 11:51:58 2021
New Revision: 1886153

URL: http://svn.apache.org/viewvc?rev=1886153&view=rev
Log:
* tools/dev/contribulyze.py
  (process_committers): Elide 'svn-role' from the output, like full committers
    are elided.

Modified:
    subversion/trunk/tools/dev/contribulyze.py

Modified: subversion/trunk/tools/dev/contribulyze.py
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/contribulyze.py?rev=1886153&r1=1886152&r2=1886153&view=diff
==============================================================================
--- subversion/trunk/tools/dev/contribulyze.py (original)
+++ subversion/trunk/tools/dev/contribulyze.py Wed Feb  3 11:51:58 2021
@@ -721,6 +721,9 @@ def process_committers(committers):
       c.is_committer = True
       c.is_full_committer = in_full_committers
     line = committers.readline()
+  svn_role = Contributor.parse('svn-role <svnsvn{_AT_}svn-qavm.apache.org>')
+  Contributor.get(*svn_role).is_committer = True 
+  Contributor.get(*svn_role).is_full_committer = True # elide it from the listing
 
 
 def usage():