Show More
@@ -816,11 +816,10 b' def _checkcopies(srcctx, dstctx, f, base' | |||
|
816 | 816 | of = None |
|
817 | 817 | seen = {f} |
|
818 | 818 | for oc in getsrcfctx(f, msrc[f]).ancestors(): |
|
819 | ocr = oc.linkrev() | |
|
820 | 819 | of = oc.path() |
|
821 | 820 | if of in seen: |
|
822 | 821 | # check limit late - grab last rename before |
|
823 | if ocr < limit: | |
|
822 | if oc.linkrev() < limit: | |
|
824 | 823 | break |
|
825 | 824 | continue |
|
826 | 825 | seen.add(of) |
General Comments 0
You need to be logged in to leave comments.
Login now