From ab1e0183f70b15a6e0097370ea3bdff36529524c Mon Sep 17 00:00:00 2001 From: Benny Malengier Date: Thu, 4 Dec 2008 14:33:24 +0000 Subject: [PATCH] 0002512: [Python 2.6 support] Change sets module by built-in set types svn: r11413 --- src/GrampsDb/_ReadXML.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/GrampsDb/_ReadXML.py b/src/GrampsDb/_ReadXML.py index 08a11fd2d..461229225 100644 --- a/src/GrampsDb/_ReadXML.py +++ b/src/GrampsDb/_ReadXML.py @@ -27,11 +27,14 @@ #------------------------------------------------------------------------- import os import sys -import sets import shutil from xml.parsers.expat import ExpatError, ParserCreate from gettext import gettext as _ import re +try: + set() +except NameError: + from sets import Set as set #------------------------------------------------------------------------ # @@ -276,7 +279,7 @@ class GrampsParser(UpdateCallback): self.childref_map = {} self.change = change self.dp = DateHandler.parser - self.place_names = sets.Set() + self.place_names = set() cursor = database.get_place_cursor() data = cursor.next() while data: