diff --git a/openslides/application/models.py b/openslides/application/models.py index c350bd9ba..75e743249 100644 --- a/openslides/application/models.py +++ b/openslides/application/models.py @@ -442,7 +442,7 @@ class Application(models.Model, SlideMixin): for poll in self.polls: for option in poll.get_options(): if option.get_votes().exists(): - results.append((option.yes, option.no, option.contained, poll.print_votesinvalid(), poll.print_votescast())) + results.append((option.Yes, option.No, option.Abstain, poll.print_votesinvalid(), poll.print_votescast())) return results