From bed9092bb958504dac0406035081ce8b29764dea Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 15 Apr 2010 04:03:20 +0000 Subject: [PATCH] 3843: In NarrativeWeb plugin Events Table, the column needs to be written even if no notes exist, by adamplumb svn: r15129 --- src/plugins/webreport/NarrativeWeb.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index e64d020e0..5906c2edd 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -503,7 +503,10 @@ class BasePage(object): notelist.extend( evt_ref.get_note_list() ) if notelist: notelist = self.dump_notes( notelist ) or " " - trow += Html("td", notelist, class_ = "ColumnNotes") + else: + notelist = " " + + trow += Html("td", notelist, class_ = "ColumnNotes") # get event source references srcrefs = self.get_citation_links( evt.get_source_references() ) or " "