--- a/hgext/convert/subversion.py Sat Jan 19 13:19:27 2008 +0100
+++ b/hgext/convert/subversion.py Sat Jan 19 14:48:31 2008 +0100
@@ -490,7 +490,12 @@
fromrev = froment.copyfrom_rev
self.ui.debug("Info: %s %s %s %s\n" % (frompath, froment, ent, entrypath))
- fromkind = svn.ra.check_path(self.ra, entrypath, fromrev)
+ # We can avoid the reparent calls if the module has not changed
+ # but it probably does not worth the pain.
+ self.reparent('')
+ fromkind = svn.ra.check_path(self.ra, entrypath.strip('/'), fromrev)
+ self.reparent(self.module)
+
if fromkind == svn.core.svn_node_file: # a deleted file
entries.append(self.recode(entry))
elif fromkind == svn.core.svn_node_dir: