Mercurial > hg-stable
changeset 31242:254f98326eef
vfs: use 'vfs' module directly in 'mercurial.repair'
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:29:43 +0100 |
parents | 0a38a313033e |
children | 067f2a95e32c |
files | mercurial/repair.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/repair.py Thu Mar 02 13:28:17 2017 +0100 +++ b/mercurial/repair.py Thu Mar 02 13:29:43 2017 +0100 @@ -26,6 +26,7 @@ revlog, scmutil, util, + vfs as vfsmod, ) def _bundle(repo, bases, heads, node, suffix, compress=True): @@ -882,7 +883,7 @@ ui.write(_('data fully migrated to temporary repository\n')) backuppath = tempfile.mkdtemp(prefix='upgradebackup.', dir=srcrepo.path) - backupvfs = scmutil.vfs(backuppath) + backupvfs = vfsmod.vfs(backuppath) # Make a backup of requires file first, as it is the first to be modified. util.copyfile(srcrepo.join('requires'), backupvfs.join('requires'))