diff --git a/helios/views.py b/helios/views.py index 9d3b745b1f5300b2566cc5b8ec50d4ba4b99ab0c..932c69e3260d802cc52539f19392d8725631ea61 100644 --- a/helios/views.py +++ b/helios/views.py @@ -512,7 +512,6 @@ def encrypt_ballot(request, election): perform the ballot encryption given answers_json, a JSON'ified list of list of answers (list of list because each question could have a list of answers if more than one.) """ - # FIXME: maybe make this just request.POST at some point? answers = utils.from_json(request.POST['answers_json']) ev = homomorphic.EncryptedVote.fromElectionAndAnswers(election, answers) return ev.ld_object.includeRandomness().toJSONDict()