Skip to content
Snippets Groups Projects
Commit 4ebbd7c4 authored by Martin von Zweigbergk's avatar Martin von Zweigbergk
Browse files

copies: return only path from _tracefile() since that's all caller needs

Differential Revision: https://phab.mercurial-scm.org/D6587
parent 6a3872e3
No related merge requests found
......@@ -161,8 +161,9 @@
manifest am, stopping after the first ancestor lower than limit"""
for f in fctx.ancestors():
if am.get(f.path(), None) == f.filenode():
return f
path = f.path()
if am.get(path, None) == f.filenode():
return path
if not f.isintroducedafter(limit):
return None
......@@ -237,6 +238,6 @@
if debug:
start = util.timer()
ofctx = _tracefile(fctx, am, limit)
if ofctx:
opath = _tracefile(fctx, am, limit)
if opath:
if debug:
......@@ -242,6 +243,6 @@
if debug:
dbg('debug.copies: rename of: %s\n' % ofctx._path)
cm[f] = ofctx.path()
dbg('debug.copies: rename of: %s\n' % opath)
cm[f] = opath
if debug:
dbg('debug.copies: time: %f seconds\n'
% (util.timer() - start))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment