Fixed wrong line break in assignment ballot pdf (used split in

stead of rsplit).
This commit is contained in:
Emanuel Schuetze 2011-09-21 21:13:54 +02:00
parent 10e8b95b1b
commit d671d2b153

View File

@ -658,7 +658,7 @@ def print_assignment_poll(request, poll_id=None):
if poll.optiondecision: if poll.optiondecision:
for option in options: for option in options:
o = str(option).rsplit("(",1) o = str(option).split("(",1)
cell.append(Paragraph(o[0], stylesheet['Ballot_option_name'])) cell.append(Paragraph(o[0], stylesheet['Ballot_option_name']))
if len(o) > 1: if len(o) > 1:
cell.append(Paragraph("("+o[1], stylesheet['Ballot_option_group'])) cell.append(Paragraph("("+o[1], stylesheet['Ballot_option_group']))
@ -676,7 +676,7 @@ def print_assignment_poll(request, poll_id=None):
t=Table(data, 10.5*cm, 29.7*cm) t=Table(data, 10.5*cm, 29.7*cm)
else: else:
for option in options: for option in options:
o = str(option).rsplit("(",1) o = str(option).split("(",1)
cell.append(Paragraph(circle+o[0], stylesheet['Ballot_option_name'])) cell.append(Paragraph(circle+o[0], stylesheet['Ballot_option_name']))
if len(o) > 1: if len(o) > 1:
cell.append(Paragraph("("+o[1], stylesheet['Ballot_option_group_right'])) cell.append(Paragraph("("+o[1], stylesheet['Ballot_option_group_right']))