mercurial/bundlerepo.py
changeset 50413 3a2df812e1c7
parent 50201 149f09ffef46
child 50928 d718eddf01d9
equal deleted inserted replaced
50412:4077d6222cf1 50413:3a2df812e1c7
   482             shutil.rmtree(self._tempparent, True)
   482             shutil.rmtree(self._tempparent, True)
   483 
   483 
   484     def cancopy(self):
   484     def cancopy(self):
   485         return False
   485         return False
   486 
   486 
   487     def peer(self, path=None):
   487     def peer(self, path=None, remotehidden=False):
   488         return bundlepeer(self, path=path)
   488         return bundlepeer(self, path=path, remotehidden=remotehidden)
   489 
   489 
   490     def getcwd(self):
   490     def getcwd(self):
   491         return encoding.getcwd()  # always outside the repo
   491         return encoding.getcwd()  # always outside the repo
   492 
   492 
   493     # Check if parents exist in localrepo before setting
   493     # Check if parents exist in localrepo before setting