From 2672b7f7a2f889a6fa0c948fd714da04202653cd Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 30 Jun 2001 23:02:25 +0000 Subject: [PATCH] Fixed importing of family photos svn: r208 --- src/GrampsParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GrampsParser.py b/src/GrampsParser.py index fc1301cf0..6daf65cf2 100644 --- a/src/GrampsParser.py +++ b/src/GrampsParser.py @@ -346,7 +346,7 @@ class GrampsParser(handler.ContentHandler): photo.setPrivate(0) if self.family: self.family.addPhoto(photo) - if self.source: + elif self.source: self.source.addPhoto(photo) else: self.person.addPhoto(photo)