##// END OF EJS Templates
shelve: add the missing `create` parameter to the bundlerepo constructor...
Matt Harbison -
r44124:132470ee stable
parent child Browse files
Show More
@@ -146,7 +146,7 b' class shelvedfile(object):'
146 def bundlerepo(self):
146 def bundlerepo(self):
147 path = self.vfs.join(self.fname)
147 path = self.vfs.join(self.fname)
148 return bundlerepo.instance(
148 return bundlerepo.instance(
149 self.repo.baseui, b'bundle://%s+%s' % (self.repo.root, path)
149 self.repo.baseui, b'bundle://%s+%s' % (self.repo.root, path), False
150 )
150 )
151
151
152 def writebundle(self, bases, node):
152 def writebundle(self, bases, node):
General Comments 0
You need to be logged in to leave comments. Login now