##// END OF EJS Templates
context: fix workingctx.__contains__
Patrick Mezard -
r8061:26316dda default
parent child Browse files
Show More
@@ -513,7 +513,7 b' class workingctx(changectx):'
513 return True
513 return True
514
514
515 def __contains__(self, key):
515 def __contains__(self, key):
516 return self._dirstate[key] not in "?r"
516 return self._repo.dirstate[key] not in "?r"
517
517
518 def _manifest(self):
518 def _manifest(self):
519 """generate a manifest corresponding to the working directory"""
519 """generate a manifest corresponding to the working directory"""
General Comments 0
You need to be logged in to leave comments. Login now