# HG changeset patch # User Pierre-Yves David # Date 1488457934 -3600 # Node ID b023caa6dbaebb9029ab467640a23361d23be95a # Parent c1ebe18d51565f85cc8d8a60f13a714abea59772 vfs: use 'vfs' module directly in 'hgext.convert' Now that the 'vfs' classes moved in their own module, lets use the new module directly. We update code iteratively to help with possible bisect needs in the future. diff -r c1ebe18d5156 -r b023caa6dbae hgext/convert/subversion.py --- a/hgext/convert/subversion.py Thu Mar 02 13:31:39 2017 +0100 +++ b/hgext/convert/subversion.py Thu Mar 02 13:32:14 2017 +0100 @@ -13,8 +13,8 @@ encoding, error, pycompat, - scmutil, util, + vfs as vfsmod, ) from . import common @@ -1146,8 +1146,8 @@ self.run0('checkout', path, wcpath) self.wc = wcpath - self.opener = scmutil.vfs(self.wc) - self.wopener = scmutil.vfs(self.wc) + self.opener = vfsmod.vfs(self.wc) + self.wopener = vfsmod.vfs(self.wc) self.childmap = mapfile(ui, self.join('hg-childmap')) if util.checkexec(self.wc): self.is_exec = util.isexec