From 97b66a7bbcf5c34f8d1c8335feb966de0eab27de Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Tue, 26 Nov 2024 00:14:02 -0600 Subject: [PATCH] missed one --- libnotices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnotices.py b/libnotices.py index 2b3afe6..9687bd1 100644 --- a/libnotices.py +++ b/libnotices.py @@ -207,7 +207,7 @@ returntable += tablestart + 'Name'+ th for account in accounts: accountcount = sum(b.person == account.name for b in allbooks) if accountcount >0: - returntable += "" + account.person + td + str(accountcount) + "" + returntable += "" + account.name + td + str(accountcount) + "" duesoon = [d for d in allbooks if (d.duedate < datetime.date.today() + datetime.timedelta(days=10)) and not (str(d.renewresult).lower() == 'None'.lower())] if len(duesoon) >=1: returntable += tablestart + 'Type'+ th +'Count'