From 84ee76afa7e15663e9d98a1cf37c6ca8420e61bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sun, 5 Jul 2015 11:10:48 +0200 Subject: [PATCH] 8683: polish; remove old reference --- gramps/plugins/importer/importxml.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gramps/plugins/importer/importxml.py b/gramps/plugins/importer/importxml.py index 95e1df4a0..3b09d737b 100644 --- a/gramps/plugins/importer/importxml.py +++ b/gramps/plugins/importer/importxml.py @@ -1704,8 +1704,6 @@ class GrampsParser(UpdateCallback): def start_name(self, attrs): if self.person: self.start_person_name(attrs) - #else: - #self.start_place_name(attrs) def start_place_name(self, attrs): self.place_name = PlaceName() @@ -2694,8 +2692,6 @@ class GrampsParser(UpdateCallback): def stop_name(self, attrs): if self.person: self.stop_person_name(attrs) - #else: - #self.stop_place_name(attrs) def stop_place_name(self, tag): self.place_name = None