ExportFtree: fix typo

svn: r12462
This commit is contained in:
Gerald Britton
2009-04-17 14:58:25 +00:00
parent e63996d08f
commit 5c60081622
4 changed files with 606 additions and 850 deletions

View File

@@ -293,7 +293,7 @@ def get_name(name, count):
"""returns a name string built from the components of the Name
instance, in the form of Firstname Surname"""
return = (name.first_name + ' ' +
return (name.first_name + ' ' +
(name.prefix + ' ' if name.prefix else '') +
name.surname +
(str(count) if count != -1 else '') +