##// END OF EJS Templates
match: use self.exact instead of lambda...
Simon Heimberg -
r8522:39fd6755 default
parent child Browse files
Show More
@@ -45,7 +45,7 b' class never(_match):'
45
45
46 class exact(_match):
46 class exact(_match):
47 def __init__(self, root, cwd, files):
47 def __init__(self, root, cwd, files):
48 _match.__init__(self, root, cwd, files, lambda f: f in files, False)
48 _match.__init__(self, root, cwd, files, self.exact, False)
49
49
50 class match(_match):
50 class match(_match):
51 def __init__(self, root, cwd, patterns, include, exclude, default):
51 def __init__(self, root, cwd, patterns, include, exclude, default):
General Comments 0
You need to be logged in to leave comments. Login now