Attribute Types

svn: r6392
This commit is contained in:
Don Allingham
2006-04-21 18:15:23 +00:00
parent 340bfa0056
commit 32f6564a01
13 changed files with 145 additions and 129 deletions

View File

@@ -410,7 +410,7 @@ class GrampsDbBase(GrampsDBCallback):
self.genderStats.count_person(person, self)
for attr in person.attribute_list:
self.individual_attributes.add(attr.type)
self.individual_attributes.add(str(attr.type))
self.marker_names.add(str(person.marker))
@@ -475,7 +475,7 @@ class GrampsDbBase(GrampsDBCallback):
transaction, change_time)
for attr in family.attribute_list:
self.family_attributes.add(attr.type)
self.family_attributes.add(str(attr.type))
def commit_repository(self, repository, transaction, change_time=None):
"""