mercurial/localrepo.py
changeset 30377 2019fbdab075
parent 30376 f84fc6a92817
child 30492 77cd647b04ac
equal deleted inserted replaced
30376:f84fc6a92817 30377:2019fbdab075
   506 
   506 
   507     def _constructmanifest(self):
   507     def _constructmanifest(self):
   508         # This is a temporary function while we migrate from manifest to
   508         # This is a temporary function while we migrate from manifest to
   509         # manifestlog. It allows bundlerepo and unionrepo to intercept the
   509         # manifestlog. It allows bundlerepo and unionrepo to intercept the
   510         # manifest creation.
   510         # manifest creation.
   511         return manifest.manifest(self.svfs)
   511         return manifest.manifestrevlog(self.svfs)
   512 
   512 
   513     @storecache('00manifest.i')
   513     @storecache('00manifest.i')
   514     def manifestlog(self):
   514     def manifestlog(self):
   515         return manifest.manifestlog(self.svfs, self)
   515         return manifest.manifestlog(self.svfs, self)
   516 
   516