mercurial/statichttprepo.py
changeset 50128 2f60cd6442fd
parent 49762 c4d587fa161c
child 50378 ebf1a07539b9
equal deleted inserted replaced
50127:ec769cbc1fa2 50128:2f60cd6442fd
   223         self._branchcaches = branchmap.BranchMapCache()
   223         self._branchcaches = branchmap.BranchMapCache()
   224         self._revbranchcache = None
   224         self._revbranchcache = None
   225         self.encodepats = None
   225         self.encodepats = None
   226         self.decodepats = None
   226         self.decodepats = None
   227         self._transref = None
   227         self._transref = None
       
   228         self._dirstate = None
   228 
   229 
   229     def _restrictcapabilities(self, caps):
   230     def _restrictcapabilities(self, caps):
   230         caps = super(statichttprepository, self)._restrictcapabilities(caps)
   231         caps = super(statichttprepository, self)._restrictcapabilities(caps)
   231         return caps.difference([b"pushkey"])
   232         return caps.difference([b"pushkey"])
   232 
   233