Mercurial > hg-stable
changeset 31331:4282feb79432
hg-mod: directly use repo.vfs.join
The 'repo.join' method is about to be deprecated.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Wed, 08 Mar 2017 16:53:24 -0800 |
parents | a3a2382b2e1b |
children | 102d3a30582c |
files | mercurial/hg.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hg.py Wed Mar 08 16:53:17 2017 -0800 +++ b/mercurial/hg.py Wed Mar 08 16:53:24 2017 -0800 @@ -559,7 +559,7 @@ destlock = copystore(ui, srcrepo, destpath) # copy bookmarks over - srcbookmarks = srcrepo.join('bookmarks') + srcbookmarks = srcrepo.vfs.join('bookmarks') dstbookmarks = os.path.join(destpath, 'bookmarks') if os.path.exists(srcbookmarks): util.copyfile(srcbookmarks, dstbookmarks) @@ -567,7 +567,7 @@ # Recomputing branch cache might be slow on big repos, # so just copy it def copybranchcache(fname): - srcbranchcache = srcrepo.join('cache/%s' % fname) + srcbranchcache = srcrepo.vfs.join('cache/%s' % fname) dstbranchcache = os.path.join(dstcachedir, fname) if os.path.exists(srcbranchcache): if not os.path.exists(dstcachedir):