# HG changeset patch # User Pierre-Yves David # Date 2017-03-02 12:32:14 # 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 --git a/hgext/convert/subversion.py b/hgext/convert/subversion.py --- a/hgext/convert/subversion.py +++ b/hgext/convert/subversion.py @@ -13,8 +13,8 @@ from mercurial import ( encoding, error, pycompat, - scmutil, util, + vfs as vfsmod, ) from . import common @@ -1146,8 +1146,8 @@ class svn_sink(converter_sink, commandli 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