From 87dda273cd53c7a4281256d9ac1ca55228c0cadd Mon Sep 17 00:00:00 2001 From: Doug Le Tough Date: Wed, 9 May 2018 10:56:43 +0200 Subject: [PATCH] "list staffers pdf" --- participate.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/participate.py b/participate.py index 623fe6e..3a6ba63 100755 --- a/participate.py +++ b/participate.py @@ -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)