From b4db8305ce3c28472c4e399de278681715f370c0 Mon Sep 17 00:00:00 2001 From: Zsolt Foldvari Date: Wed, 7 May 2008 09:48:22 +0000 Subject: [PATCH] Avoid including the same person more than once in case (s)he has several svn usernames. svn: r10688 --- src/GrampsAboutDialog.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/GrampsAboutDialog.py b/src/GrampsAboutDialog.py index cb66f36c3..04bdd3198 100644 --- a/src/GrampsAboutDialog.py +++ b/src/GrampsAboutDialog.py @@ -144,12 +144,13 @@ class AuthorParser(handler.ContentHandler): def endElement(self, tag): """Handle the end of an element.""" if tag == "author": + developer = self.text.strip() if (self.title == 'author' and - self.text not in self.author_list): - self.author_list.append(self.text.strip()) + developer not in self.author_list): + self.author_list.append(developer) elif (self.title == 'contributor' and - self.text not in self.contributor_list): - self.contributor_list.append(self.text.strip()) + developer not in self.contributor_list): + self.contributor_list.append(developer) def characters(self, chunk): """Receive notification of character data."""