##// END OF EJS Templates
convert/subversion: Use util.set() instead of set() for python2.3 compatibility
Thomas Arendsen Hein -
r5276:694eb9cc default
parent child Browse files
Show More
@@ -314,7 +314,7 b' class convert_svn(converter_source):'
314 314 out, e.g. 'I copied trunk into a subdirectory of itself instead
315 315 of making a branch'. The converted repository is significantly
316 316 smaller if we ignore such revisions."""
317 self.blacklist = set()
317 self.blacklist = util.set()
318 318 blacklist = self.blacklist
319 319 for line in file("blacklist.txt", "r"):
320 320 if not line.startswith("#"):
General Comments 0
You need to be logged in to leave comments. Login now