Show More
@@ -680,9 +680,10 b' def getrenamedfn(repo, endrev=None):' | |||
|
680 | 680 | for ancestor in fctx.ancestors(): |
|
681 | 681 | if ancestor.path() == fn: |
|
682 | 682 | renamed = ancestor.renamed() |
|
683 | rcache[fn][ancestor.rev()] = renamed | |
|
683 | rcache[fn][ancestor.rev()] = renamed and renamed[0] | |
|
684 | 684 | |
|
685 |
re |
|
|
685 | renamed = fctx.renamed() | |
|
686 | return renamed and renamed[0] | |
|
686 | 687 | except error.LookupError: |
|
687 | 688 | return None |
|
688 | 689 |
General Comments 0
You need to be logged in to leave comments.
Login now