diff options
-rw-r--r-- | becommands/html.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/html.py b/becommands/html.py index a879e77..1aa6cdd 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -537,7 +537,7 @@ class BEHTMLGen(): FD.write(self.detail_line%("Creator : ", empty_protected_string(bug.creator))) FD.write(self.detail_line%("Created : ", empty_protected_string(bug.time_string))) FD.write(self.detail_line%("Summary : ", bug.summary)) - FD.write("<tr><td colspan=\"2\"><hr></td></tr>") + FD.write("<tr><td colspan=\"2\"><hr /></td></tr>") FD.write(self.begin_comment_section) tr = [] b = '' @@ -559,7 +559,7 @@ class BEHTMLGen(): FD.write("<div class='commentF'>") else: FD.write("<div class='comment'>") - FD.write("<br>\n".join(lines)+"<br>\n") + FD.write("<br />\n".join(lines)+"<br />\n") while len(stack) > 0: stack.pop(-1) FD.write("</div>\n") # close every remaining <div class='comment... |