diff --git a/openslides/utils/pdf.py b/openslides/utils/pdf.py index ef9595153..4b5b54361 100755 --- a/openslides/utils/pdf.py +++ b/openslides/utils/pdf.py @@ -523,7 +523,7 @@ def get_assignment(assignment, story): cell2a = [] cell2a.append(Paragraph("%s:" % _("Candidates"), stylesheet['Heading4'])) cell2b = [] - for c in assignment.candidates: + for c in assignment.profile.all(): cell2b.append(Paragraph(".  %s" % unicode(c), stylesheet['Signaturefield'])) if assignment.status == "sea": for x in range(0,2*assignment.posts):