Skip to content

Commit d6c838e

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ def reviewer(request, patchid, status):
713713

714714
@login_required
715715
@transaction.atomic
716-
def committer(request, cfid, patchid, status):
716+
def committer(request, patchid, status):
717717
patch = get_object_or_404(Patch, pk=patchid)
718718

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

0 commit comments

Comments
 (0)