fixed syntax error
This commit is contained in:
parent
733c4adc53
commit
7b25f58087
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ def result_notification_send(request, section_slug, status):
|
|||
if request.method != "POST":
|
||||
return HttpResponseNotAllowed(["POST"])
|
||||
|
||||
if not all([k in request.POST for k in ["proposal_pks", "subject", "body"]])
|
||||
if not all([k in request.POST for k in ["proposal_pks", "subject", "body"]]):
|
||||
return HttpResponseBadRequest()
|
||||
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue