From 1814c41c9a193d0d330894559740cda69a76e6fc Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Fri, 25 Oct 2013 01:26:45 +0000 Subject: [PATCH] Fix to convert note text str to unicode (cuni) svn: r23388 --- gramps/plugins/export/exportxml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/export/exportxml.py b/gramps/plugins/export/exportxml.py index acb550ba1..17f70f07e 100644 --- a/gramps/plugins/export/exportxml.py +++ b/gramps/plugins/export/exportxml.py @@ -457,7 +457,7 @@ class GrampsXmlWriter(UpdateCallback): format = note.get_format() text = note.get_styledtext() styles = text.get_tags() - text = str(text) + text = cuni(text) self.g.write(' type="%s"' % ntype) if format != note.FLOWED: