From c4041b26bb73a6269942812caf9621f42292ec37 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 4 Oct 2021 14:55:14 +0200 Subject: Properly allow moving of WoA patches to next CF The previous commit removed the refusal, but missed adding the allwing.. --- pgcommitfest/commitfest/views.py | 1 + 1 file changed, 1 insertion(+) (limited to 'pgcommitfest/commitfest/views.py') diff --git a/pgcommitfest/commitfest/views.py b/pgcommitfest/commitfest/views.py index c55096a..e348692 100644 --- a/pgcommitfest/commitfest/views.py +++ b/pgcommitfest/commitfest/views.py @@ -549,6 +549,7 @@ def close(request, cfid, patchid, status): messages.error(request, "A patch in status {0} cannot be moved to next commitfest.".format(poc.statusstring)) return HttpResponseRedirect('/%s/%s/' % (poc.commitfest.id, poc.patch.id)) elif poc.status in (PatchOnCommitFest.STATUS_REVIEW, + PatchOnCommitFest.STATUS_AUTHOR, PatchOnCommitFest.STATUS_COMMITTER): # This one can be moved pass -- cgit v1.2.3