##// END OF EJS Templates
dirstate: force _checkexec to return a bool...
Mitchell Plamann -
r45310:373dd22a default
parent child Browse files
Show More
@@ -180,7 +180,7 b' class dirstate(object):'
180
180
181 @propertycache
181 @propertycache
182 def _checkexec(self):
182 def _checkexec(self):
183 return util.checkexec(self._root)
183 return bool(util.checkexec(self._root))
184
184
185 @propertycache
185 @propertycache
186 def _checkcase(self):
186 def _checkcase(self):
General Comments 0
You need to be logged in to leave comments. Login now