Mercurial > public > mercurial-scm > hg
comparison mercurial/bundlerepo.py @ 35833:87b085a4f9d1
bundlerepo: use native str when peeking in __dict__
# skip-blame since it's just a string constant prefix
Differential Revision: https://phab.mercurial-scm.org/D1892
author | Augie Fackler <augie@google.com> |
---|---|
date | Wed, 17 Jan 2018 21:42:56 -0500 |
parents | c97639ad6874 |
children | 5bc7ff103081 |
comparison
equal
deleted
inserted
replaced
35832:aad39713ef35 | 35833:87b085a4f9d1 |
---|---|
400 | 400 |
401 # If filestart was not set by self.manifestlog, that means the | 401 # If filestart was not set by self.manifestlog, that means the |
402 # manifestlog implementation did not consume the manifests from the | 402 # manifestlog implementation did not consume the manifests from the |
403 # changegroup (ex: it might be consuming trees from a separate bundle2 | 403 # changegroup (ex: it might be consuming trees from a separate bundle2 |
404 # part instead). So we need to manually consume it. | 404 # part instead). So we need to manually consume it. |
405 if 'filestart' not in self.__dict__: | 405 if r'filestart' not in self.__dict__: |
406 self._consumemanifest() | 406 self._consumemanifest() |
407 | 407 |
408 return self.filestart | 408 return self.filestart |
409 | 409 |
410 def url(self): | 410 def url(self): |