# HG changeset patch # User Augie Fackler # Date 1641407765 18000 # Node ID b9d5ad7146a3143d067f806c9662f1c43901a28d # Parent a3210c171b637ed0a41ea66723ea924c15e2d9b7 git: add opener attribute to gitstore Differential Revision: https://phab.mercurial-scm.org/D11958 diff -r a3210c171b63 -r b9d5ad7146a3 hgext/git/__init__.py --- a/hgext/git/__init__.py Thu Jan 06 09:55:28 2022 +0100 +++ b/hgext/git/__init__.py Wed Jan 05 13:36:05 2022 -0500 @@ -51,6 +51,7 @@ class gitstore(object): # store.basicstore): def __init__(self, path, vfstype): self.vfs = vfstype(path) + self.opener = self.vfs self.path = self.vfs.base self.createmode = store._calcmode(self.vfs) # above lines should go away in favor of: