##// END OF EJS Templates
context: use manifest.find() instead of two separate calls...
Augie Fackler -
r44829:2e2cfc3b default
parent child Browse files
Show More
@@ -267,7 +267,7 b' class basectx(object):'
267 267 def _fileinfo(self, path):
268 268 if '_manifest' in self.__dict__:
269 269 try:
270 return self._manifest[path], self._manifest.flags(path)
270 return self._manifest.find(path)
271 271 except KeyError:
272 272 raise error.ManifestLookupError(
273 273 self._node, path, _(b'not found in manifest')
General Comments 0
You need to be logged in to leave comments. Login now