Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.py @ 4414:b6146466b92a
context: fix workingfilectx._changectx
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 07 May 2007 22:30:36 -0500 |
parents | 7e1c8a565a4f |
children | 0912d8df5e19 3c7fc13c4bfa |
line wrap: on
line diff
--- a/mercurial/context.py Sun May 06 23:44:18 2007 +0200 +++ b/mercurial/context.py Mon May 07 22:30:36 2007 -0500 @@ -446,7 +446,7 @@ def __getattr__(self, name): if name == '_changectx': - self._changectx = workingctx(repo) + self._changectx = workingctx(self._repo) return self._changectx elif name == '_repopath': self._repopath = (self._repo.dirstate.copied(self._path)