##// END OF EJS Templates
dirstate-entry: use `?` for the state of entry without any tracking...
marmoute -
r48900:418611f1 default
parent child Browse files
Show More
@@ -306,6 +306,8 b' class DirstateItem(object):'
306 306 dirstatev1 format. It would make sense to ultimately deprecate it in
307 307 favor of the more "semantic" attributes.
308 308 """
309 if not (self._p1_tracked or self._p2_tracked or self._wc_tracked):
310 return b'?'
309 311 return self.v1_state()
310 312
311 313 @property
General Comments 0
You need to be logged in to leave comments. Login now