##// END OF EJS Templates
linkrev: fix issue with annotate of working copy...
Matt Mackall -
r24776:52628cd7 default
parent child Browse files
Show More
@@ -908,7 +908,7 b' class basefilectx(object):'
908 introrev = self.introrev()
908 introrev = self.introrev()
909 if self.rev() != introrev:
909 if self.rev() != introrev:
910 base = self.filectx(self.filenode(), changeid=introrev)
910 base = self.filectx(self.filenode(), changeid=introrev)
911 if getattr(base, '_ancestrycontext', None) is None:
911 if introrev and getattr(base, '_ancestrycontext', None) is None:
912 ac = self._repo.changelog.ancestors([introrev], inclusive=True)
912 ac = self._repo.changelog.ancestors([introrev], inclusive=True)
913 base._ancestrycontext = ac
913 base._ancestrycontext = ac
914
914
General Comments 0
You need to be logged in to leave comments. Login now