From abcc901da6ea1cc909d351504b6c39c601cfd754 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Thu, 15 Apr 2010 03:51:41 +0000 Subject: [PATCH] 3828: Narrated Web Site: Association output is incorrect, by kulath svn: r15127 --- src/plugins/webreport/NarrativeWeb.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index 010339d80..a66486262 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -3812,10 +3812,9 @@ class IndividualPage(BasePage): tbody += trow index = 0 - for data in [ - [person_ref.get_relation()], - [self.get_citation_links(person_ref.get_source_references())], - [self.dump_notes(person_ref.get_note_list())] ]: + for data in [person_ref.get_relation(), + self.get_citation_links(person_ref.get_source_references()), + self.dump_notes(person_ref.get_note_list())]: # get colclass from assoc_row colclass = assoc_row[index][1]