Was generating many blank lines in xml output,

but no longer does that.
	modified:   bugrecord.py
This commit is contained in:
David Anderson
2024-03-01 09:21:37 -08:00
parent c3bd59a8d7
commit f45fcc456f

View File

@@ -276,7 +276,7 @@ class bugrecord:
l = main.strip()
if len(l) > 0:
out += l
out += term + "\n"
out += term
return out
def paraxmlN(self, start, main, term):
@@ -288,7 +288,7 @@ class bugrecord:
t, inpre = xmlize(l, "n", inpre)
if len(t) > 0:
out += t
out += term + "\n"
out += term
return out
def generate_xml(self):