We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05dc483 commit acb8b38Copy full SHA for acb8b38
website/views/project.py
@@ -2216,6 +2216,9 @@ def gsoc_pr_report(request):
2216
merged_at__gte=start_date,
2217
merged_at__lte=end_date,
2218
)
2219
+ # remove NULL contributors BEFORE bot filters
2220
+ .exclude(contributor__isnull=True)
2221
+ # Existing bot exclusion (now safe)
2222
.exclude(
2223
Q(contributor__contributor_type__iexact="Bot")
2224
| Q(contributor__name__iendswith="[bot]")
0 commit comments