# HG changeset patch # User Pierre-Yves David # Date 1489020709 28800 # Node ID 74ee10702bbf96cfd7f211b8fbbfd0f471656f3d # Parent 6ce67d3941fc74cf7c3876ed5c3b1fcd3b4ac969 journal: directly use repo.vfs.join The 'repo.join' method is about to be deprecated. diff -r 6ce67d3941fc -r 74ee10702bbf hgext/journal.py --- a/hgext/journal.py Wed Mar 08 16:51:43 2017 -0800 +++ b/hgext/journal.py Wed Mar 08 16:51:49 2017 -0800 @@ -163,7 +163,7 @@ # to copy. move shared date over from source to destination but # move the local file first if repo.vfs.exists('namejournal'): - journalpath = repo.join('namejournal') + journalpath = repo.vfs.join('namejournal') util.rename(journalpath, journalpath + '.bak') storage = repo.journal local = storage._open(