Mercurial > hg-stable
changeset 8061:26316dda374f
context: fix workingctx.__contains__
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Mon, 13 Apr 2009 19:47:11 +0200 |
parents | b13cc762314a |
children | f4749d6fb433 |
files | mercurial/context.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/context.py Mon Apr 13 14:33:47 2009 +0200 +++ b/mercurial/context.py Mon Apr 13 19:47:11 2009 +0200 @@ -513,7 +513,7 @@ return True def __contains__(self, key): - return self._dirstate[key] not in "?r" + return self._repo.dirstate[key] not in "?r" def _manifest(self): """generate a manifest corresponding to the working directory"""