##// END OF EJS Templates
manifest: use match.prefix() instead of 'not match.anypats()'...
Martin von Zweigbergk -
r25276:c436ba9d default
parent child Browse files
Show More
@@ -219,7 +219,7 b' class manifestdict(object):'
219 219 files instead of over manifest files.'''
220 220 files = match.files()
221 221 return (len(files) < 100 and (match.isexact() or
222 (not match.anypats() and all(fn in self for fn in files))))
222 (match.prefix() and all(fn in self for fn in files))))
223 223
224 224 def walk(self, match):
225 225 '''Generates matching file names.
General Comments 0
You need to be logged in to leave comments. Login now