##// END OF EJS Templates
git: fix probable missing return...
Romain DEP. -
r45361:288328c6 default
parent child Browse files
Show More
@@ -205,7 +205,7 b' class gittreemanifestctx(object):'
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)
General Comments 0
You need to be logged in to leave comments. Login now