diff --git a/src/GrampsDbUtils/_WriteGedcom.py b/src/GrampsDbUtils/_WriteGedcom.py index 7706ca96a..e0cd78395 100644 --- a/src/GrampsDbUtils/_WriteGedcom.py +++ b/src/GrampsDbUtils/_WriteGedcom.py @@ -2,6 +2,7 @@ # Gramps - a GTK+/GNOME based genealogy program # # Copyright (C) 2000-2007 Donald N. Allingham +# Copyright (C) 2008 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 @@ -1296,15 +1297,15 @@ class GedcomWriter(BasicUtils.UpdateCallback): title = name.get_title() if suffix == "": if surprefix == "": - self.__writeln(1, 'NAME', '%s/%s/' % (firstname, surname)) + self.__writeln(1, 'NAME', '%s /%s/' % (firstname, surname)) else: - self.__writeln(1, 'NAME', '%s/%s %s/' % + self.__writeln(1, 'NAME', '%s /%s %s/' % (firstname, surprefix, surname)) elif surprefix == "": - self.__writeln(1, 'NAME', '%s/%s/ %s' % + self.__writeln(1, 'NAME', '%s /%s/ %s' % (firstname, surname, suffix)) else: - self.__writeln(1, 'NAME', '%s/%s %s/ %s' % + self.__writeln(1, 'NAME', '%s /%s %s/ %s' % (firstname, surprefix, surname, suffix)) if firstname: