From 1c1da5a8eabfca939ffa0c40d98428bcb8f78020 Mon Sep 17 00:00:00 2001 From: Peter Landgren Date: Thu, 16 Sep 2010 12:36:59 +0000 Subject: [PATCH] Issue 4235. svn: r15906 --- src/plugins/export/ExportGedcom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/export/ExportGedcom.py b/src/plugins/export/ExportGedcom.py index f3447f318..bc34eb454 100644 --- a/src/plugins/export/ExportGedcom.py +++ b/src/plugins/export/ExportGedcom.py @@ -44,7 +44,7 @@ import libgedcom import Errors from ExportOptions import WriterOptionBox from gen.updatecallback import UpdateCallback -from Utils import media_path_full, get_unicode_path +from Utils import media_path_full import gen.proxy from QuestionDialog import ErrorDialog from PlaceUtils import conv_lat_lon @@ -332,7 +332,7 @@ class GedcomWriter(UpdateCallback): token_level = level for text in textlist: # make it unicode so that breakup below does the right thin. - text = get_unicode_path(text) + text = unicode(text) if limit: prefix = "\n%d CONC " % (level + 1) txt = prefix.join(breakup(text, limit))