"list staffers pdf"

This commit is contained in:
Doug Le Tough 2018-05-09 10:56:43 +02:00
parent 09a0557e4f
commit 87dda273cd
1 changed files with 1 additions and 2 deletions

View File

@ -1127,10 +1127,9 @@ def print_users():
spaceAfter=10
))
for staffer in staffers:
rows = []
row = Paragraph(staffer[1], styles['row2']), staffer[2], styles['row2']), staffer[3], styles['row2']))
row = (Paragraph(staffer[1], styles['row2']), Paragraph(staffer[2], styles['row2']), Paragraph(staffer[3], styles['row2']))
table = Table(rows, colWidths=cols_width, rowHeights=23)
rows.append(row)
table = Table(rows, colWidths=cols_width, rowHeights=23)