##// END OF EJS Templates
convert/svn: correctly encode deleted entry paths...
Patrick Mezard -
r11126:f7535c43 stable
parent child Browse files
Show More
@@ -663,7 +663,7 b' class svn_source(converter_source):'
663 for child in children:
663 for child in children:
664 childpath = self.getrelpath("/" + child, pmodule)
664 childpath = self.getrelpath("/" + child, pmodule)
665 if childpath:
665 if childpath:
666 entries.append(childpath)
666 entries.append(self.recode(childpath))
667 else:
667 else:
668 self.ui.debug('unknown path in revision %d: %s\n' % \
668 self.ui.debug('unknown path in revision %d: %s\n' % \
669 (revnum, path))
669 (revnum, path))
General Comments 0
You need to be logged in to leave comments. Login now