##// END OF EJS Templates
vfs: use 'vfs' module directly in 'hgext.mq'...
Pierre-Yves David -
r31243:816bc3b3 default
parent child Browse files
Show More
@@ -94,6 +94,7 b' from mercurial import ('
94 smartset,
94 smartset,
95 subrepo,
95 subrepo,
96 util,
96 util,
97 vfs as vfsmod,
97 )
98 )
98
99
99 release = lockmod.release
100 release = lockmod.release
@@ -434,7 +435,7 b' class queue(object):'
434 except IOError:
435 except IOError:
435 curpath = os.path.join(path, 'patches')
436 curpath = os.path.join(path, 'patches')
436 self.path = patchdir or curpath
437 self.path = patchdir or curpath
437 self.opener = scmutil.vfs(self.path)
438 self.opener = vfsmod.vfs(self.path)
438 self.ui = ui
439 self.ui = ui
439 self.baseui = baseui
440 self.baseui = baseui
440 self.applieddirty = False
441 self.applieddirty = False
General Comments 0
You need to be logged in to leave comments. Login now