Show More
@@ -656,14 +656,10 b' class svn_source(converter_source):' | |||
|
656 | 656 | if fromkind == svn.core.svn_node_file: |
|
657 | 657 | entries.append(self.recode(entrypath)) |
|
658 | 658 | elif fromkind == svn.core.svn_node_dir: |
|
659 |
|
|
|
660 | children = self._find_children(path, prevnum) | |
|
661 | else: | |
|
662 | oroot = parentpath.strip('/') | |
|
663 | nroot = path.strip('/') | |
|
664 | children = self._find_children(oroot, prevnum) | |
|
665 | children = [s.replace(oroot, nroot) for s in children] | |
|
666 | ||
|
659 | oroot = parentpath.strip('/') | |
|
660 | nroot = path.strip('/') | |
|
661 | children = self._find_children(oroot, prevnum) | |
|
662 | children = [s.replace(oroot, nroot) for s in children] | |
|
667 | 663 | for child in children: |
|
668 | 664 | childpath = self.getrelpath("/" + child, pmodule) |
|
669 | 665 | if not childpath: |
General Comments 0
You need to be logged in to leave comments.
Login now