From bde0c0535217a0019c7863ef75b47682711ed0c1 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Fri, 13 Jul 2001 12:47:07 +0000 Subject: [PATCH] default person no longer forces an integer ID svn: r245 --- src/GrampsParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GrampsParser.py b/src/GrampsParser.py index e027b3025..f472b3785 100644 --- a/src/GrampsParser.py +++ b/src/GrampsParser.py @@ -204,7 +204,7 @@ class GrampsParser(handler.ContentHandler): #--------------------------------------------------------------------- def start_people(self,attrs): if attrs.has_key("default"): - self.tempDefault = int(attrs["default"]) + self.tempDefault = attrs["default"] #--------------------------------------------------------------------- #