Merge pull request #126 from prculley/bug8809
Bug 8809 Multiple GEDCOM imports creates duplicate event IDs
This commit is contained in:
commit
c3e0d8c7c0
5
gramps/plugins/lib/libgedcom.py
Normal file → Executable file
5
gramps/plugins/lib/libgedcom.py
Normal file → Executable file
@ -1750,10 +1750,11 @@ class IdFinder(object):
|
||||
@rtype: str
|
||||
"""
|
||||
index = self.prefix % self.index
|
||||
while str(index) in self.ids:
|
||||
# self.ids contains 'bytes' data
|
||||
while index.encode('utf-8') in self.ids:
|
||||
self.index += 1
|
||||
index = self.prefix % self.index
|
||||
self.ids.add(index)
|
||||
self.ids.add(index.encode('utf-8'))
|
||||
self.index += 1
|
||||
return index
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user