diff mercurial/changelog.py @ 30210:5e4f16874a9f

revlog: make 'storedeltachains' a "public" attribute The next changeset will make that attribute read by the changegroup packer. We make it "public" beforehand.
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
date Fri, 14 Oct 2016 02:25:08 +0200
parents b7a966ce89ed
children be520fe3a3e9
line wrap: on
line diff
--- a/mercurial/changelog.py	Mon Oct 17 22:51:22 2016 -0700
+++ b/mercurial/changelog.py	Fri Oct 14 02:25:08 2016 +0200
@@ -267,7 +267,7 @@
         # Delta chains for changelogs tend to be very small because entries
         # tend to be small and don't delta well with each. So disable delta
         # chains.
-        self._storedeltachains = False
+        self.storedeltachains = False
 
         self._realopener = opener
         self._delayed = False