Report cleanup.

svn: r94
This commit is contained in:
Don Allingham
2001-06-07 13:49:00 +00:00
parent 6f5767cdf0
commit 11d9e1315a
22 changed files with 935 additions and 738 deletions

View File

@@ -79,13 +79,13 @@ class HtmlDoc(TextDoc):
if top_add == 1:
self.top.append(line)
match = start.search(line)
if match != None:
if match:
top_add = 0
elif bottom_add == 0:
match = stop.search(line)
if match != None:
bottom_add = 1
self.bottom.append(line)
elif bottom_add == 0:
match = stop.search(line)
if match != None:
bottom_add = 1
self.bottom.append(line)
else:
self.bottom.append(line)
templateFile.close()