##// END OF EJS Templates
context: fix workingctx's __contains__ method
Dirkjan Ochtman -
r6845:835a01a0 default
parent child Browse files
Show More
@@ -497,7 +497,7 b' class workingctx(changectx):'
497 return True
497 return True
498
498
499 def __contains__(self, key):
499 def __contains__(self, key):
500 return self._dirstate[f] not in "?r"
500 return self._dirstate[key] not in "?r"
501
501
502 def __getattr__(self, name):
502 def __getattr__(self, name):
503 if name == '_status':
503 if name == '_status':
General Comments 0
You need to be logged in to leave comments. Login now