diff --git a/mercurial/shelve.py b/mercurial/shelve.py --- a/mercurial/shelve.py +++ b/mercurial/shelve.py @@ -114,9 +114,6 @@ def stat(self): return self.vfs.stat(self.fname) - def opener(self, mode=b'rb'): - return self.vfs(self.fname, mode) - class Shelf(object): """Represents a shelf, including possibly multiple files storing it. @@ -193,6 +190,9 @@ finally: fp.close() + def open_patch(self, mode=b'rb'): + return self.vfs(self.name + b'.patch', mode) + class shelvedstate(object): """Handle persistence during unshelving operations. @@ -481,7 +481,7 @@ Shelf(repo, name).writeinfo(info) bases = list(mutableancestors(repo[node])) Shelf(repo, name).writebundle(bases, node) - with shelvedfile(repo, name, patchextension).opener(b'wb') as fp: + with Shelf(repo, name).open_patch(b'wb') as fp: cmdutil.exportfile( repo, [node], fp, opts=mdiff.diffopts(git=True), match=match )