Fix for bug 2759: Error on Marker report (notes)

svn: r12168
This commit is contained in:
Gary Burton 2009-02-28 21:44:30 +00:00
parent 76f536e571
commit 251e75f941

View File

@ -2,6 +2,7 @@
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2007-2008 Brian G. Matherly # Copyright (C) 2007-2008 Brian G. Matherly
# Copyright (C) 2009 Gary Burton
# #
# This program is free software; you can redistribute it and/or modify # 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 # 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_cell('MR-TableCell', 2)
self.doc.start_paragraph('MR-Normal') 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_paragraph()
self.doc.end_cell() self.doc.end_cell()