convert/subversion: Use util.set() instead of set() for python2.3 compatibility
authorThomas Arendsen Hein <thomas@intevation.de>
Fri, 31 Aug 2007 13:14:03 +0200
changeset 5274 694eb9ccb54d
parent 5273 4287590a63af
child 5277 a32a8e50d233
convert/subversion: Use util.set() instead of set() for python2.3 compatibility
hgext/convert/subversion.py
--- a/hgext/convert/subversion.py
+++ b/hgext/convert/subversion.py
@@ -314,7 +314,7 @@ class convert_svn(converter_source):
         out, e.g. 'I copied trunk into a subdirectory of itself instead
         of making a branch'. The converted repository is significantly
         smaller if we ignore such revisions."""
-        self.blacklist = set()
+        self.blacklist = util.set()
         blacklist = self.blacklist
         for line in file("blacklist.txt", "r"):
             if not line.startswith("#"):