Skip to content

Commit b62c00a

Browse files
committed
Fix error when importing a GEDCOM file into an existing tree
Fixes #13726.
1 parent 3e0e1da commit b62c00a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gramps/plugins/lib/libgedcom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3062,7 +3062,7 @@ def __init__(
30623062
data = next(cursor)
30633063
while data:
30643064
(handle, val) = data
3065-
self.place_names[val[2]].append(handle)
3065+
self.place_names[val.title].append(handle)
30663066
data = next(cursor)
30673067
cursor.close()
30683068

0 commit comments

Comments
 (0)