From 0bfb3a622d1f9beec55dfc7949ce6fd4ec7287bb Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Sat, 28 Feb 2009 22:17:09 +0000 Subject: [PATCH] Fix for bug 2759: Error on Marker report (notes) svn: r12170 --- src/plugins/textreport/MarkerReport.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/textreport/MarkerReport.py b/src/plugins/textreport/MarkerReport.py index 741f000c9..e88d64ef7 100644 --- a/src/plugins/textreport/MarkerReport.py +++ b/src/plugins/textreport/MarkerReport.py @@ -2,6 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2007-2008 Brian G. Matherly +# Copyright (C) 2009 Gary Burton # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -410,7 +411,7 @@ class MarkerReport(Report): self.doc.start_cell('MR-TableCell', 2) self.doc.start_paragraph('MR-Normal') - self.doc.write_text(note.get(True)) + self.doc.write_text(note.get()) self.doc.end_paragraph() self.doc.end_cell()