##// 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 447 def __getattr__(self, name):
448 448 if name == '_changectx':
449 self._changectx = workingctx(repo)
449 self._changectx = workingctx(self._repo)
450 450 return self._changectx
451 451 elif name == '_repopath':
452 452 self._repopath = (self._repo.dirstate.copied(self._path)
General Comments 0
You need to be logged in to leave comments. Login now