mercurial/localrepo.py
changeset 50541 e6948aafda6f
parent 50438 b15b6e2c3309
child 50580 833a4e881a7a
equal deleted inserted replaced
50537:9db197c73138 50541:e6948aafda6f
   347 
   347 
   348     def capabilities(self):
   348     def capabilities(self):
   349         return self._caps
   349         return self._caps
   350 
   350 
   351     def clonebundles(self):
   351     def clonebundles(self):
   352         return self._repo.tryread(bundlecaches.CB_MANIFEST_FILE)
   352         return bundlecaches.get_manifest(self._repo)
   353 
   353 
   354     def debugwireargs(self, one, two, three=None, four=None, five=None):
   354     def debugwireargs(self, one, two, three=None, four=None, five=None):
   355         """Used to test argument passing over the wire"""
   355         """Used to test argument passing over the wire"""
   356         return b"%s %s %s %s %s" % (
   356         return b"%s %s %s %s %s" % (
   357             one,
   357             one,