##// END OF EJS Templates
context: fix workingfilectx._changectx
Matt Mackall -
r4414:b6146466 default
parent child Browse files
Show More
@@ -446,7 +446,7 b' class workingfilectx(filectx):'
446
446
447 def __getattr__(self, name):
447 def __getattr__(self, name):
448 if name == '_changectx':
448 if name == '_changectx':
449 self._changectx = workingctx(repo)
449 self._changectx = workingctx(self._repo)
450 return self._changectx
450 return self._changectx
451 elif name == '_repopath':
451 elif name == '_repopath':
452 self._repopath = (self._repo.dirstate.copied(self._path)
452 self._repopath = (self._repo.dirstate.copied(self._path)
General Comments 0
You need to be logged in to leave comments. Login now