Mercurial > public > mercurial-scm > hg-stable
diff mercurial/context.py @ 23046:c1aede895072
repoview: issue a special message when filtering hidden changesets
Hidden changesets are by far the most common error case and is the only one[1]
that can reach the user. We move to a friendlier message with a hint about how
to access the data anyway. We should probably point to a help topic instead but
we do not have such a topic yet.
Example of the new output
abort: hidden revision '4'!
(use --hidden to access hidden revisions)
[1] Actually, filtering from "served" can also reach the user during certain
exchange operations.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 17 Oct 2014 15:25:32 -0700 |
parents | a4dd270a419c |
children | c586cb50872b |
line wrap: on
line diff
--- a/mercurial/context.py Fri Oct 17 15:54:43 2014 -0700 +++ b/mercurial/context.py Fri Oct 17 15:25:32 2014 -0700 @@ -469,6 +469,10 @@ pass except (error.FilteredIndexError, error.FilteredLookupError, error.FilteredRepoLookupError): + if repo.filtername == 'visible': + msg = _("hidden revision '%s'") % changeid + hint = _('use --hidden to access hidden revisions') + raise error.FilteredRepoLookupError(msg, hint=hint) msg = _("filtered revision '%s' (not in '%s' subset)") msg %= (changeid, repo.filtername) raise error.FilteredRepoLookupError(msg)