changeset 43720:132470ee53fe stable

shelve: add the missing `create` parameter to the bundlerepo constructor Caught by pytype. Differential Revision: https://phab.mercurial-scm.org/D7458
author Matt Harbison <matt_harbison@yahoo.com>
date Tue, 19 Nov 2019 14:59:23 -0500
parents cb23d9e3e21f
children bfbbf48d51e8
files mercurial/shelve.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/shelve.py	Tue Nov 19 14:36:22 2019 -0500
+++ b/mercurial/shelve.py	Tue Nov 19 14:59:23 2019 -0500
@@ -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):