Submitter | Pierre-Yves David |
---|---|
Date | March 8, 2017, 9:18 p.m. |
Message ID | <411f7ad0293ad358de1e.1489007908@nodosa.octopoid.net> |
Download | mbox | patch |
Permalink | /patch/19015/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py +++ b/hgext/largefiles/lfutil.py @@ -27,6 +27,7 @@ from mercurial import ( pycompat, scmutil, util, + vfs as vfsmod, ) shortname = '.hglf' @@ -144,7 +145,7 @@ def openlfdirstate(ui, repo, create=True ''' vfs = repo.vfs lfstoredir = longname - opener = scmutil.vfs(vfs.join(lfstoredir)) + opener = vfsmod.vfs(vfs.join(lfstoredir)) lfdirstate = largefilesdirstate(opener, ui, repo.root, repo.dirstate._validate)