Fixed string.join in combining string segments

svn: r589
This commit is contained in:
Don Allingham 2001-11-27 04:07:23 +00:00
parent c6ca0c4e0f
commit 0fcaa80f36

View File

@ -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]