Mercurial > public > mercurial-scm > hg-stable
diff mercurial/scmutil.py @ 26156:a112fffdb632
scmutil.readonlyvfs: implement join
Required in an upcoming patch.
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Wed, 02 Sep 2015 22:05:58 -0700 |
parents | ce26928cbe41 |
children | cce8ebd31407 |
line wrap: on
line diff
--- a/mercurial/scmutil.py Wed Sep 02 22:05:23 2015 -0700 +++ b/mercurial/scmutil.py Wed Sep 02 22:05:58 2015 -0700 @@ -586,6 +586,8 @@ raise util.Abort('this vfs is read only') return self.vfs(path, mode, *args, **kw) + def join(self, path, *insidef): + return self.vfs.join(path, *insidef) def walkrepos(path, followsym=False, seen_dirs=None, recurse=False): '''yield every hg repository under path, always recursively.