From d1ae8faad398a2ca23df9bd88732917c8b8962db Mon Sep 17 00:00:00 2001 From: Dan Hamik Date: Tue, 26 Nov 2024 00:23:04 -0600 Subject: [PATCH] add newline after total table --- libnotices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libnotices.py b/libnotices.py index 5a3b1ed..a17f0e4 100644 --- a/libnotices.py +++ b/libnotices.py @@ -209,7 +209,7 @@ for account in accounts: if accountcount >0: returntable += "" + account.name + td + str(accountcount) + "" totalcheckedout = len(allbooks) -returntable += "Total" + td + str(totalcheckedout) + "" + tableend +returntable += "Total" + td + str(totalcheckedout) + "" + tableend + "
" 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'