This is an automated email from the ASF dual-hosted git repository.

houston pushed a commit to branch branch_9_9
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_9 by this push:
     new 2d80d52ebe1 Fix small bug in parseContributorsFromChanges.py
2d80d52ebe1 is described below

commit 2d80d52ebe139d1e078b43616d1d1a5fc7aa257a
Author: Houston Putman <[email protected]>
AuthorDate: Fri Jul 25 10:51:27 2025 -0700

    Fix small bug in parseContributorsFromChanges.py
---
 dev-tools/scripts/parseContributorsFromChanges.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-tools/scripts/parseContributorsFromChanges.py 
b/dev-tools/scripts/parseContributorsFromChanges.py
index 70617df1957..de298420905 100644
--- a/dev-tools/scripts/parseContributorsFromChanges.py
+++ b/dev-tools/scripts/parseContributorsFromChanges.py
@@ -51,7 +51,8 @@ for para in paras:
       contributor = contributor.strip()
       contributors[contributor] += 1
 
-del contributors['solrbot']
+if 'solrbot' in contributors:
+  del contributors['solrbot']
 
 sorted_contributors = sorted(contributors.items(), key=lambda item: item[1], 
reverse=True)
 

Reply via email to