From 59e5d0e83aa6bba88bd28a3e43dc07a7158361be Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Thu, 18 Sep 2008 18:54:14 +0000 Subject: [PATCH] Fix problems remaining since note markup was changed. Remove False parameter in calls to note.get(). Bug #2351 svn: r11075 --- src/plugins/FamilyGroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/FamilyGroup.py b/src/plugins/FamilyGroup.py index 3523a83ac..0588ac482 100644 --- a/src/plugins/FamilyGroup.py +++ b/src/plugins/FamilyGroup.py @@ -300,7 +300,7 @@ class FamilyGroup(Report): if self.incParNotes: for notehandle in person.get_note_list(): note = self.database.get_note_from_handle(notehandle) - self.dump_parent_line(_("Note"), note.get(False)) + self.dump_parent_line(_("Note"), note.get()) if self.includeAttrs: for attr in person.get_attribute_list():