##// END OF EJS Templates
convert: more cleanup in svn directory copy handling
Patrick Mezard -
r6542:e7810e61 default
parent child Browse files
Show More
@@ -675,9 +675,11 class svn_source(converter_source):
675 # Copies here (must copy all from source)
675 # Copies here (must copy all from source)
676 # Probably not a real problem for us if
676 # Probably not a real problem for us if
677 # source does not exist
677 # source does not exist
678 if ent.copyfrom_path:
678 if not ent.copyfrom_path:
679 continue
679 copyfrompath = self.getrelpath(ent.copyfrom_path.decode(self.encoding))
680 copyfrompath = self.getrelpath(ent.copyfrom_path.decode(self.encoding))
680 if copyfrompath:
681 if not copyfrompath:
682 continue
681 copyfrom[path] = ent
683 copyfrom[path] = ent
682 self.ui.debug("mark %s came from %s:%d\n"
684 self.ui.debug("mark %s came from %s:%d\n"
683 % (path, copyfrompath, ent.copyfrom_rev))
685 % (path, copyfrompath, ent.copyfrom_rev))
General Comments 0
You need to be logged in to leave comments. Login now