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:56:11 UTC

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

Author: danielsh
Date: Wed Feb  3 11:56:10 2021
New Revision: 1886154

URL: http://svn.apache.org/viewvc?rev=1886154&view=rev
Log:
* tools/dev/contribulyze.py
  (drop): Sort the resulting list in descending order, as it used to be sorted.

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=1886154&r1=1886153&r2=1886154&view=diff
==============================================================================
--- subversion/trunk/tools/dev/contribulyze.py (original)
+++ subversion/trunk/tools/dev/contribulyze.py Wed Feb  3 11:56:10 2021
@@ -669,7 +669,8 @@ def drop(revision_url_pattern):
   # the top -- that way we know whom to look at first for commit access
   # proposals.
   sorted_contributors = sorted(Contributor.all_contributors.values(),
-                               key = Contributor.sort_key)
+                               key=Contributor.sort_key,
+                               reverse=True)
   for c in sorted_contributors:
     if c not in seen_contributors:
       if c.score() > 0: