From 7aa6433a2270523cf170cc1cb797123bf94226ab Mon Sep 17 00:00:00 2001 From: Gary Burton Date: Fri, 10 Apr 2009 10:41:28 +0000 Subject: [PATCH] Bug #2902: Fix problem with notes in geneweb export svn: r12427 --- src/plugins/export/ExportGeneWeb.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/export/ExportGeneWeb.py b/src/plugins/export/ExportGeneWeb.py index c65495ff7..3914d3d67 100644 --- a/src/plugins/export/ExportGeneWeb.py +++ b/src/plugins/export/ExportGeneWeb.py @@ -4,6 +4,7 @@ # Copyright (C) 2004 Martin Hawlisch # Copyright (C) 2004-2006, 2008 Donald N. Allingham # Copyright (C) 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 @@ -272,7 +273,7 @@ class GeneWebWriter: note = "" for notehandle in notelist: noteobj = self.db.get_note_from_handle(notehandle) - note += noteobj.get(False) + note += noteobj.get() note += " " if note and note != "": note = note.replace('\n\r',' ')