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 | 
|---|
'