Crash caused by change made in bug #2289. Reversing change.

svn: r10929
This commit is contained in:
Gary Burton 2008-07-26 20:58:43 +00:00
parent 0b30b32377
commit e68981fb69

View File

@ -1283,7 +1283,7 @@ class GrampsDbBase(Callback):
"""
Return if a key exists in the name_group table.
"""
return str(name) in self.name_group
return self.name_group.has_key(str(name))
def set_name_group_mapping(self, name, group):
"""