##// END OF EJS Templates
fsmonitor: use modern match API...
Martin von Zweigbergk -
r32322:7df25907 default
parent child Browse files
Show More
@@ -253,10 +253,10 b' def overridewalk(orig, self, match, subr'
253 fresh_instance = False
253 fresh_instance = False
254
254
255 exact = skipstep3 = False
255 exact = skipstep3 = False
256 if matchfn == match.exact: # match.exact
256 if match.isexact(): # match.exact
257 exact = True
257 exact = True
258 dirignore = util.always # skip step 2
258 dirignore = util.always # skip step 2
259 elif match.files() and not match.anypats(): # match.match, no patterns
259 elif match.prefix(): # match.match, no patterns
260 skipstep3 = True
260 skipstep3 = True
261
261
262 if not exact and self._checkcase:
262 if not exact and self._checkcase:
General Comments 0
You need to be logged in to leave comments. Login now