##// END OF EJS Templates
filectx.parents: also fetch the filelog of rename source too...
Pierre-Yves David -
r23699:fe17a6fb default
parent child Browse files
Show More
@@ -749,7 +749,7 b' class basefilectx(object):'
749 # As null id have alway been filtered out in the previous list
749 # As null id have alway been filtered out in the previous list
750 # comprehension, inserting to 0 will always result in "replacing
750 # comprehension, inserting to 0 will always result in "replacing
751 # first nullid parent with rename information.
751 # first nullid parent with rename information.
752 pl.insert(0, (r[0], r[1], None))
752 pl.insert(0, (r[0], r[1], self._repo.file(r[0])))
753
753
754 return [filectx(self._repo, p, fileid=n, filelog=l) for p, n, l in pl]
754 return [filectx(self._repo, p, fileid=n, filelog=l) for p, n, l in pl]
755
755
General Comments 0
You need to be logged in to leave comments. Login now