Skip to content

Commit 65073ba

Browse files
committed
Allow moving of Waiting On Author patches to next CF
Discussion: https://postgr.es/m/20211001173131.GA13090@ahch-to
1 parent b9d9db8 commit 65073ba

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pgcommitfest/commitfest/views.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -541,8 +541,7 @@ def close(request, cfid, patchid, status):
541541
poc.status = PatchOnCommitFest.STATUS_RETURNED
542542
elif status == 'next':
543543
# Only some patch statuses can actually be moved.
544-
if poc.status in (PatchOnCommitFest.STATUS_AUTHOR,
545-
PatchOnCommitFest.STATUS_COMMITTED,
544+
if poc.status in (PatchOnCommitFest.STATUS_COMMITTED,
546545
PatchOnCommitFest.STATUS_NEXT,
547546
PatchOnCommitFest.STATUS_RETURNED,
548547
PatchOnCommitFest.STATUS_REJECTED):

0 commit comments

Comments
 (0)