D4806: context: stop catching and re-raising FilteredRepoLookupError

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Sat Sep 29 06:14:12 UTC 2018


martinvonz created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  FilteredRepoLookupError is only raised by changectx's constructor and
  the higher-level scmutil.revsymbol(), so there's no need to catch it
  in changectx's constructor.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D4806

AFFECTED FILES
  mercurial/context.py

CHANGE DETAILS

diff --git a/mercurial/context.py b/mercurial/context.py
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -445,8 +445,6 @@
         except (error.FilteredIndexError, error.FilteredLookupError):
             raise error.FilteredRepoLookupError(_("filtered revision '%s'")
                                                 % pycompat.bytestr(changeid))
-        except error.FilteredRepoLookupError:
-            raise
         except IndexError:
             pass
         raise error.RepoLookupError(



To: martinvonz, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list