diff mercurial/manifest.py @ 51034:498afb627f78

revlog: move configuration attribute into dedicated object First this make things clearer as the number of configuration attributes has grown out of control, so gathering them make things clearer. Second, this will make future sharing them at different level simpler. Third it will allow us to make initialisation and temporary override simpler soon.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 10 Oct 2023 10:02:05 +0200
parents 14de15825253
children 861fe9273d57
line wrap: on
line diff
--- a/mercurial/manifest.py	Tue Oct 10 10:01:57 2023 +0200
+++ b/mercurial/manifest.py	Tue Oct 10 10:02:05 2023 +0200
@@ -1614,7 +1614,7 @@
         )
 
         self.index = self._revlog.index
-        self._generaldelta = self._revlog._generaldelta
+        self._generaldelta = self._revlog.delta_config.general_delta
 
     def get_revlog(self):
         """return an actual revlog instance if any