# HG changeset patch # User Matt Harbison # Date 2019-11-19 19:59:23 # Node ID 132470ee53fe4b81e4dce13ad58a215ed9e6f28e # Parent cb23d9e3e21ffbc9c46f310a4a3d6d09da96d92d shelve: add the missing `create` parameter to the bundlerepo constructor Caught by pytype. Differential Revision: https://phab.mercurial-scm.org/D7458 diff --git a/mercurial/shelve.py b/mercurial/shelve.py --- a/mercurial/shelve.py +++ b/mercurial/shelve.py @@ -146,7 +146,7 @@ class shelvedfile(object): 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):