From fdac4f7ff8bd82cb5d19ac9c76c0ca69dac7a7ed Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Fri, 30 Dec 2011 22:09:09 +0000 Subject: [PATCH] Fixed two typos in SourcePage. Thank you, Doug Blank, for showing them to me. svn: r18664 --- src/plugins/webreport/NarrativeWeb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/webreport/NarrativeWeb.py b/src/plugins/webreport/NarrativeWeb.py index af994d189..69d0e5c12 100644 --- a/src/plugins/webreport/NarrativeWeb.py +++ b/src/plugins/webreport/NarrativeWeb.py @@ -4390,10 +4390,10 @@ class SourcePage(BasePage): ordered2 = Html("ol") list1 += ordered2 - for fhandle in families: + for fhandle in fml_list: _obj = self.dbase_.get_family_from_handle(fhandle) if _obj: - list2 = tml("li") + list2 = Html("li") father_handle = _obj.get_father_handle() mother_handle = _obj.get_mother_handle()