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 += "<tr><td>" + account.name + td + str(accountcount) + "</td></tr>"
 totalcheckedout = len(allbooks)
-returntable += "<tr><td><b>Total" + td + str(totalcheckedout) + "</b></td></tr>" + tableend
+returntable += "<tr><td><b>Total" + td + str(totalcheckedout) + "</b></td></tr>" + tableend + "<BR>"
 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 + '<colgroup><col/><col/></colgroup><tr><th>Type'+ th +'Count</th></tr>'