# HG changeset patch # User Pierre-Yves David # Date 2017-03-09 00:52:06 # Node ID a5ae1d79e2711f460349ecd487e28df3d832e6ec # Parent 1d7e8eb8788b33de9798b37215a36d52ddc3a68f largefiles: directly use repo.vfs.join The 'repo.join' method is about to be deprecated. diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py +++ b/hgext/largefiles/lfutil.py @@ -202,7 +202,7 @@ def storepath(repo, hash, forcelocal=Fal file with the given hash.''' if not forcelocal and repo.shared(): return repo.vfs.reljoin(repo.sharedpath, longname, hash) - return repo.join(longname, hash) + return repo.vfs.join(longname, hash) def findstorepath(repo, hash): '''Search through the local store path(s) to find the file for the given