##// END OF EJS Templates
manifestdict.matches: avoid name 'lm' for a not-lazymanifest
Martin von Zweigbergk -
r24664:ea4a7c89 default
parent child Browse files
Show More
@@ -267,9 +267,9 b' class manifestdict(object):'
267 (not match.anypats() and util.all(fn in self for fn in files)))):
267 (not match.anypats() and util.all(fn in self for fn in files)))):
268 return self._intersectfiles(files)
268 return self._intersectfiles(files)
269
269
270 lm = manifestdict('')
270 m = manifestdict('')
271 lm._lm = self._lm.filtercopy(match)
271 m._lm = self._lm.filtercopy(match)
272 return lm
272 return m
273
273
274 def diff(self, m2, clean=False):
274 def diff(self, m2, clean=False):
275 '''Finds changes between the current manifest and m2.
275 '''Finds changes between the current manifest and m2.
General Comments 0
You need to be logged in to leave comments. Login now