##// END OF EJS Templates
context: some gratuitous documentation improvement...
marmoute -
r52655:dcbe7fda default
parent child Browse files
Show More
@@ -265,6 +265,9 b' class basectx:'
265 raise error.ManifestLookupError(
265 raise error.ManifestLookupError(
266 self._node or b'None', path, _(b'not found in manifest')
266 self._node or b'None', path, _(b'not found in manifest')
267 )
267 )
268 # Try to find the file in the manifest delta that can be faster to read
269 # than a full manifest. If we fail to find the file, it might still
270 # exist in the full manifest, so lets look for it there.
268 if '_manifestdelta' in self.__dict__ or path in self.files():
271 if '_manifestdelta' in self.__dict__ or path in self.files():
269 if path in self._manifestdelta:
272 if path in self._manifestdelta:
270 return (
273 return (
General Comments 0
You need to be logged in to leave comments. Login now