##// END OF EJS Templates
convert/svn: remove broken but unused copy filtering code...
Patrick Mezard -
r11125:7a5a98fc stable
parent child Browse files
Show More
@@ -662,11 +662,8 b' class svn_source(converter_source):'
662 children = [s.replace(oroot, nroot) for s in children]
662 children = [s.replace(oroot, nroot) for s in children]
663 for child in children:
663 for child in children:
664 childpath = self.getrelpath("/" + child, pmodule)
664 childpath = self.getrelpath("/" + child, pmodule)
665 if not childpath:
665 if childpath:
666 continue
666 entries.append(childpath)
667 if childpath in copies:
668 del copies[childpath]
669 entries.append(childpath)
670 else:
667 else:
671 self.ui.debug('unknown path in revision %d: %s\n' % \
668 self.ui.debug('unknown path in revision %d: %s\n' % \
672 (revnum, path))
669 (revnum, path))
General Comments 0
You need to be logged in to leave comments. Login now