From f5a4e4829fa6f0941beaec81c7b2c6422a8dfe4c Mon Sep 17 00:00:00 2001 From: David Straub Date: Tue, 30 Nov 2021 19:53:09 +0100 Subject: [PATCH] Fix Place.get_text_data_child_list --- gramps/gen/lib/place.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/gen/lib/place.py b/gramps/gen/lib/place.py index fc8f48306..e32275873 100644 --- a/gramps/gen/lib/place.py +++ b/gramps/gen/lib/place.py @@ -228,7 +228,7 @@ class Place(CitationBase, NoteBase, MediaBase, UrlBase, PrimaryObject): """ ret = (self.media_list + self.alt_loc + self.urls + - self.name.get_text_data_child_list() + self.alt_names) + [self.name] + self.alt_names) return ret def get_citation_child_list(self):