mercurial/localrepo.py
changeset 32119 4c565c1b4747
parent 32118 bda90664a462
child 32120 8ca9b3add033
equal deleted inserted replaced
32118:bda90664a462 32119:4c565c1b4747
   823     def shared(self):
   823     def shared(self):
   824         '''the type of shared repository (None if not shared)'''
   824         '''the type of shared repository (None if not shared)'''
   825         if self.sharedpath != self.path:
   825         if self.sharedpath != self.path:
   826             return 'store'
   826             return 'store'
   827         return None
   827         return None
   828 
       
   829     def join(self, f, *insidef):
       
   830         self.ui.deprecwarn("use 'repo.vfs.join' instead of 'repo.join'", '4.2')
       
   831         return self.vfs.join(os.path.join(f, *insidef))
       
   832 
   828 
   833     def wjoin(self, f, *insidef):
   829     def wjoin(self, f, *insidef):
   834         return self.vfs.reljoin(self.root, f, *insidef)
   830         return self.vfs.reljoin(self.root, f, *insidef)
   835 
   831 
   836     def file(self, f):
   832     def file(self, f):