manifestdict.matches: avoid name 'lm' for a not-lazymanifest
authorMartin von Zweigbergk <martinvonz@google.com>
Wed, 08 Apr 2015 10:06:05 -0700
changeset 24664 ea4a7c8909ae
parent 24663 7d01371e6358
child 24665 5326820a2952
manifestdict.matches: avoid name 'lm' for a not-lazymanifest
mercurial/manifest.py
--- a/mercurial/manifest.py	Tue Mar 24 21:25:57 2015 +0100
+++ b/mercurial/manifest.py	Wed Apr 08 10:06:05 2015 -0700
@@ -267,9 +267,9 @@
             (not match.anypats() and util.all(fn in self for fn in files)))):
             return self._intersectfiles(files)
 
-        lm = manifestdict('')
-        lm._lm = self._lm.filtercopy(match)
-        return lm
+        m = manifestdict('')
+        m._lm = self._lm.filtercopy(match)
+        return m
 
     def diff(self, m2, clean=False):
         '''Finds changes between the current manifest and m2.