##// END OF EJS Templates
git: add opener attribute to gitstore...
Augie Fackler -
r49371:b9d5ad71 default
parent child Browse files
Show More
@@ -51,6 +51,7 b' getversion = gitutil.pygit2_version'
51 class gitstore(object): # store.basicstore):
51 class gitstore(object): # store.basicstore):
52 def __init__(self, path, vfstype):
52 def __init__(self, path, vfstype):
53 self.vfs = vfstype(path)
53 self.vfs = vfstype(path)
54 self.opener = self.vfs
54 self.path = self.vfs.base
55 self.path = self.vfs.base
55 self.createmode = store._calcmode(self.vfs)
56 self.createmode = store._calcmode(self.vfs)
56 # above lines should go away in favor of:
57 # above lines should go away in favor of:
General Comments 0
You need to be logged in to leave comments. Login now