From 638cd571d4645d845179acfb2f772d92d7e18749 Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Wed, 27 Jan 2016 12:57:23 +0100 Subject: [PATCH] 9200: "Find text in record" filter crash --- 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 14d81d697..8c27b16c0 100644 --- a/gramps/gen/lib/place.py +++ b/gramps/gen/lib/place.py @@ -229,7 +229,7 @@ class Place(CitationBase, NoteBase, MediaBase, UrlBase, PrimaryObject): """ ret = (self.media_list + self.alt_loc + self.urls + - self.name + self.alt_names) + self.name.get_text_data_child_list() + self.alt_names) return ret def get_citation_child_list(self):