mercurial/store.py
changeset 46780 6266d19556ad
parent 46607 e9901d01d135
child 46819 d4ba4d51f85f
equal deleted inserted replaced
46779:49fd21f32695 46780:6266d19556ad
   439             trypending=trypending,
   439             trypending=trypending,
   440             concurrencychecker=concurrencychecker,
   440             concurrencychecker=concurrencychecker,
   441         )
   441         )
   442 
   442 
   443     def manifestlog(self, repo, storenarrowmatch):
   443     def manifestlog(self, repo, storenarrowmatch):
   444         rootstore = manifest.manifestrevlog(self.vfs)
   444         rootstore = manifest.manifestrevlog(repo.nodeconstants, self.vfs)
   445         return manifest.manifestlog(self.vfs, repo, rootstore, storenarrowmatch)
   445         return manifest.manifestlog(self.vfs, repo, rootstore, storenarrowmatch)
   446 
   446 
   447     def datafiles(self, matcher=None):
   447     def datafiles(self, matcher=None):
   448         return self._walk(b'data', True) + self._walk(b'meta', True)
   448         return self._walk(b'data', True) + self._walk(b'meta', True)
   449 
   449