From a45f62ddda2bc295cd7910dc88c3e55108ae77f3 Mon Sep 17 00:00:00 2001 From: Richard Darst Date: Fri, 31 Jul 2009 11:40:52 -0700 Subject: [PATCH] Add newlines to HTML2 and Text writers to improve readability darcs-hash:20090731184052-82ea9-15abffebe8c99e14e64f3f2ae2b9546a3186c3c2.gz --- writers.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/writers.py b/writers.py index c8eef43..e40c037 100644 --- a/writers.py +++ b/writers.py @@ -320,7 +320,7 @@ class HTML2(_BaseWriter): MeetingItems.append("") inSublist = False if haveTopic: - MeetingItems.append("") + MeetingItems.append("
") item = item haveTopic = True else: @@ -596,6 +596,8 @@ class Text(_BaseWriter): for m in M.minutes: item = "* "+m.text(M) if m.itemtype == "TOPIC": + if haveTopic: + MeetingItems.append("") item = wrapList(item, 0) haveTopic = True else: