mercurial/localrepo.py
branchstable
changeset 30218 1767723f71cf
parent 30187 3e86261bf110
child 30219 3c8811efdddc
--- a/mercurial/localrepo.py	Tue Oct 18 14:27:30 2016 -0500
+++ b/mercurial/localrepo.py	Tue Oct 18 17:32:51 2016 -0700
@@ -506,6 +506,12 @@
 
     @storecache('00manifest.i')
     def manifest(self):
+        return self._constructmanifest()
+
+    def _constructmanifest(self):
+        # This is a temporary function while we migrate from manifest to
+        # manifestlog. It allows bundlerepo and unionrepo to intercept the
+        # manifest creation.
         return manifest.manifest(self.svfs)
 
     @property