fixed syntax error

This commit is contained in:
Brian Rosner 2012-09-08 17:04:28 -06:00
parent 733c4adc53
commit 7b25f58087

View file

@ -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: