Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/writers.py
diff options
context:
space:
mode:
Diffstat (limited to 'writers.py')
-rw-r--r--writers.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/writers.py b/writers.py
index 242f210..d9a8cd4 100644
--- a/writers.py
+++ b/writers.py
@@ -335,6 +335,9 @@ class HTML2(_BaseWriter):
haveTopic = True
else:
if not inSublist:
+ if not haveTopic:
+ MeetingItems.append('<li>')
+ haveTopic = True
MeetingItems.append('<ol type="a">')
inSublist = True
if haveTopic: item = wrapList(item, 2)+"</li>"
@@ -374,6 +377,10 @@ class HTML2(_BaseWriter):
if headerPrinted:
ActionItemsPerson.append(" </ol></li>")
# unassigned items:
+ if len(ActionItemsPerson) == 0:
+ doActionItemsPerson = False
+ else:
+ doActionItemsPerson = True
ActionItemsPerson.append(" <li><b>UNASSIGNED</b><ol>")
numberUnassigned = 0
for m in self.iterActionItemsUnassigned():