##// 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 files instead of over manifest files.'''
219 files instead of over manifest files.'''
220 files = match.files()
220 files = match.files()
221 return (len(files) < 100 and (match.isexact() or
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 def walk(self, match):
224 def walk(self, match):
225 '''Generates matching file names.
225 '''Generates matching file names.
General Comments 0
You need to be logged in to leave comments. Login now