##// END OF EJS Templates
Merge with crew-stable
Patrick Mezard -
r5896:ff7fb4f0 merge default
parent child Browse files
Show More
@@ -490,7 +490,12 b' class svn_source(converter_source):'
490 fromrev = froment.copyfrom_rev
490 fromrev = froment.copyfrom_rev
491 self.ui.debug("Info: %s %s %s %s\n" % (frompath, froment, ent, entrypath))
491 self.ui.debug("Info: %s %s %s %s\n" % (frompath, froment, ent, entrypath))
492
492
493 fromkind = svn.ra.check_path(self.ra, entrypath, fromrev)
493 # We can avoid the reparent calls if the module has not changed
494 # but it probably does not worth the pain.
495 self.reparent('')
496 fromkind = svn.ra.check_path(self.ra, entrypath.strip('/'), fromrev)
497 self.reparent(self.module)
498
494 if fromkind == svn.core.svn_node_file: # a deleted file
499 if fromkind == svn.core.svn_node_file: # a deleted file
495 entries.append(self.recode(entry))
500 entries.append(self.recode(entry))
496 elif fromkind == svn.core.svn_node_dir:
501 elif fromkind == svn.core.svn_node_dir:
General Comments 0
You need to be logged in to leave comments. Login now