changeset 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 51a30cae2bff
children 65e41f388970
files mercurial/scmutil.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
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.