##// END OF EJS Templates
dirstate-item: implement `tracked` in a simpler way...
marmoute -
r48740:f1033c2d default
parent child Browse files
Show More
@@ -263,7 +263,7 b' class DirstateItem(object):'
263 @property
263 @property
264 def tracked(self):
264 def tracked(self):
265 """True is the file is tracked in the working copy"""
265 """True is the file is tracked in the working copy"""
266 return self.v1_state() in b"nma"
266 return self._wc_tracked
267
267
268 @property
268 @property
269 def added(self):
269 def added(self):
General Comments 0
You need to be logged in to leave comments. Login now