##// END OF EJS Templates
fix: migrate to new method for getting copy info...
Martin von Zweigbergk -
r41943:c3a249c2 default
parent child Browse files
Show More
@@ -601,9 +601,7 b' def replacerev(ui, repo, ctx, filedata, '
601 if path not in ctx:
601 if path not in ctx:
602 return None
602 return None
603 fctx = ctx[path]
603 fctx = ctx[path]
604 copied = fctx.renamed()
604 copied = fctx.copysource()
605 if copied:
606 copied = copied[0]
607 return context.memfilectx(
605 return context.memfilectx(
608 repo,
606 repo,
609 memctx,
607 memctx,
General Comments 0
You need to be logged in to leave comments. Login now