From e81c82fcc0321af53221165f577266dd01579aa2 Mon Sep 17 00:00:00 2001 From: romjerome Date: Tue, 27 Oct 2015 09:48:20 +0100 Subject: [PATCH] 9003: Locality data in address was not imported --- gramps/plugins/importer/importxml.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gramps/plugins/importer/importxml.py b/gramps/plugins/importer/importxml.py index 0ba5b05f2..964cf3a97 100644 --- a/gramps/plugins/importer/importxml.py +++ b/gramps/plugins/importer/importxml.py @@ -693,7 +693,8 @@ class GrampsParser(UpdateCallback): "places": (None, self.stop_places), "placeobj": (self.start_placeobj, self.stop_placeobj), "placeref": (self.start_placeref, self.stop_placeref), - "ptitle": (None, self.stop_ptitle), + "ptitle": (None, self.stop_ptitle), + "locality": (None, self.stop_locality), "location": (self.start_location, None), "lds_ord": (self.start_lds_ord, self.stop_lds_ord), "temple": (self.start_temple, None),