fixed pk joining

This commit is contained in:
Brian Rosner 2012-09-08 16:30:35 -06:00
parent df0ea0655c
commit 2b0b986530

View file

@ -414,7 +414,7 @@ def result_notification_prepare(request, section_slug, status):
"section_slug": section_slug, "section_slug": section_slug,
"status": status, "status": status,
"proposals": proposals, "proposals": proposals,
"proposal_pks": " ".join(proposal_pks), "proposal_pks": " ".join([str(pk) for pk in proposal_pks]),
} }
return render(request, "reviews/result_notification_prepare.html", ctx) return render(request, "reviews/result_notification_prepare.html", ctx)