Skip to content

Commit a8d914e

Browse files
committed
Fix "Claim as committer" button
Fixes an oversight from 013eeb1. Pressing this button was throwing an exception.
1 parent f1329ab commit a8d914e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgcommitfest/commitfest/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ def reviewer(request, patchid, status):
955955

956956
@login_required
957957
@transaction.atomic
958-
def committer(request, cfid, patchid, status):
958+
def committer(request, patchid, status):
959959
patch = get_object_or_404(Patch, pk=patchid)
960960

961961
committer = list(Committer.objects.filter(user=request.user, active=True))

0 commit comments

Comments
 (0)