##// END OF EJS Templates
manifest: remove pycompat.iteritems()...
Gregory Szorc -
r49781:3d35e748 default
parent child Browse files
Show More
@@ -826,9 +826,7 b' class treemanifest(object):'
826 826 def _loadalllazy(self):
827 827 selfdirs = self._dirs
828 828 subpath = self._subpath
829 for d, (node, readsubtree, docopy) in pycompat.iteritems(
830 self._lazydirs
831 ):
829 for d, (node, readsubtree, docopy) in self._lazydirs.items():
832 830 if docopy:
833 831 selfdirs[d] = readsubtree(subpath(d), node).copy()
834 832 else:
@@ -2245,7 +2243,7 b' class treemanifestctx(object):'
2245 2243 m0 = self._manifestlog.get(self._dir, store.node(r0)).read()
2246 2244 m1 = self.read()
2247 2245 md = treemanifest(self._manifestlog.nodeconstants, dir=self._dir)
2248 for f, ((n0, fl0), (n1, fl1)) in pycompat.iteritems(m0.diff(m1)):
2246 for f, ((n0, fl0), (n1, fl1)) in m0.diff(m1).items():
2249 2247 if n1:
2250 2248 md[f] = n1
2251 2249 if fl1:
General Comments 0
You need to be logged in to leave comments. Login now