changeset 24665:5326820a2952

manifestdict._intersectfiles: avoid one level of property indirection We have already bothered to extract "lm = self._lm", so let's use "lm" where possible.
author Martin von Zweigbergk <martinvonz@google.com>
date Wed, 08 Apr 2015 10:03:59 -0700
parents ea4a7c8909ae
children 3092885b5b32
files mercurial/manifest.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/manifest.py	Wed Apr 08 10:06:05 2015 -0700
+++ b/mercurial/manifest.py	Wed Apr 08 10:03:59 2015 -0700
@@ -206,7 +206,7 @@
         lm = self._lm
         for fn in files:
             if fn in lm:
-                ret._lm[fn] = self._lm[fn]
+                ret._lm[fn] = lm[fn]
         return ret
 
     def filesnotin(self, m2):