[Request] [+ ] D8539: git: fix probable missing return
rom1dep (Romain DEP.)
phabricator at mercurial-scm.org
Sun May 17 17:39:38 UTC 2020
rom1dep created this revision.
Herald added a reviewer: durin42.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D8539
AFFECTED FILES
hgext/git/manifest.py
CHANGE DETAILS
diff --git a/hgext/git/manifest.py b/hgext/git/manifest.py
--- a/hgext/git/manifest.py
+++ b/hgext/git/manifest.py
@@ -205,7 +205,7 @@
return memgittreemanifestctx(self._repo, self._tree)
def find(self, path):
- self.read()[path]
+ return self.read()[path]
@interfaceutil.implementer(repository.imanifestrevisionwritable)
To: rom1dep, durin42, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20200517/6f6dd1d4/attachment.html>
More information about the Mercurial-patches
mailing list