* src/plugins/WriteGedcom.py: handle surnames containing a slash
svn: r1813
This commit is contained in:
parent
18853036c1
commit
a33f0e716d
@ -1033,6 +1033,7 @@ class GedcomWriter:
|
||||
firstName = self.cnvtxt(name.getFirstName())
|
||||
surName = self.cnvtxt(name.getSurname())
|
||||
surPref = self.cnvtxt(name.getSurnamePrefix())
|
||||
surName = surPref.replace('/','?')
|
||||
suffix = self.cnvtxt(name.getSuffix())
|
||||
title = self.cnvtxt(name.getTitle())
|
||||
if suffix == "":
|
||||
|
Loading…
Reference in New Issue
Block a user