D7458: shelve: add the missing `create` parameter to the bundlerepo constructor

mharbison72 (Matt Harbison) phabricator at mercurial-scm.org
Thu Nov 21 08:41:03 EST 2019


Closed by commit rHG132470ee53fe: shelve: add the missing `create` parameter to the bundlerepo constructor (authored by mharbison72).
This revision was automatically updated to reflect the committed changes.

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D7458?vs=18247&id=18261

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7458/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7458

AFFECTED FILES
  mercurial/shelve.py

CHANGE DETAILS

diff --git a/mercurial/shelve.py b/mercurial/shelve.py
--- a/mercurial/shelve.py
+++ b/mercurial/shelve.py
@@ -146,7 +146,7 @@
     def bundlerepo(self):
         path = self.vfs.join(self.fname)
         return bundlerepo.instance(
-            self.repo.baseui, b'bundle://%s+%s' % (self.repo.root, path)
+            self.repo.baseui, b'bundle://%s+%s' % (self.repo.root, path), False
         )
 
     def writebundle(self, bases, node):



To: mharbison72, #hg-reviewers, dlax, pulkit
Cc: dlax, mercurial-devel


More information about the Mercurial-devel mailing list