diff --git a/gramps/src/GrampsParser.py b/gramps/src/GrampsParser.py index 07b3989d1..d8059fd1e 100644 --- a/gramps/src/GrampsParser.py +++ b/gramps/src/GrampsParser.py @@ -747,7 +747,7 @@ class GrampsParser: def endElement(self,tag): if self.func: - self.func(self,string.join(self.tlist)) + self.func(self,string.join(self.tlist,'')) self.func_index = self.func_index - 1 self.func,self.tlist = self.func_list[self.func_index]