Mercurial > hg
changeset 31239:9cdba6072b97
vfs: use 'vfs' module directly in 'mercurial.debugcommand'
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.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Thu, 02 Mar 2017 13:31:07 +0100 |
parents | 35284f933518 |
children | 5f68e7341ada |
files | mercurial/debugcommands.py |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/debugcommands.py Thu Mar 02 13:30:58 2017 +0100 +++ b/mercurial/debugcommands.py Thu Mar 02 13:31:07 2017 +0100 @@ -63,6 +63,7 @@ templater, treediscovery, util, + vfs as vfsmod, ) release = lockmod.release @@ -76,7 +77,7 @@ """find the ancestor revision of two revisions in a given index""" if len(args) == 3: index, rev1, rev2 = args - r = revlog.revlog(scmutil.vfs(pycompat.getcwd(), audit=False), index) + r = revlog.revlog(vfsmod.vfs(pycompat.getcwd(), audit=False), index) lookup = r.lookup elif len(args) == 2: if not repo: @@ -452,7 +453,7 @@ spaces = opts.get('spaces') dots = opts.get('dots') if file_: - rlog = revlog.revlog(scmutil.vfs(pycompat.getcwd(), audit=False), + rlog = revlog.revlog(vfsmod.vfs(pycompat.getcwd(), audit=False), file_) revs = set((int(r) for r in revs)) def events():