hgext/git/manifest.py
changeset 44843 288328c6711b
parent 44625 e9e7156a8d6c
child 44928 935c9f347bdb
equal deleted inserted replaced
44842:73d6ce2746d2 44843:288328c6711b
   203         # NB: it's important that we return a memgittreemanifestctx
   203         # NB: it's important that we return a memgittreemanifestctx
   204         # because the caller expects a mutable manifest.
   204         # because the caller expects a mutable manifest.
   205         return memgittreemanifestctx(self._repo, self._tree)
   205         return memgittreemanifestctx(self._repo, self._tree)
   206 
   206 
   207     def find(self, path):
   207     def find(self, path):
   208         self.read()[path]
   208         return self.read()[path]
   209 
   209 
   210 
   210 
   211 @interfaceutil.implementer(repository.imanifestrevisionwritable)
   211 @interfaceutil.implementer(repository.imanifestrevisionwritable)
   212 class memgittreemanifestctx(object):
   212 class memgittreemanifestctx(object):
   213     def __init__(self, repo, tree):
   213     def __init__(self, repo, tree):