Submitter | phabricator |
---|---|
Date | Jan. 12, 2018, 12:48 p.m. |
Message ID | <475cbe22195a02afb3f21ef30b4e5c44@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/26698/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -439,8 +439,8 @@ unfilteredrepo = repo.unfiltered() ctx = unfilteredrepo[changeid] - # If the changeset is obsolete, enrich the hint with the reason that - # made this changeset not visible + # If the changeset is obsolete, enrich the message with the reason + # that made this changeset not visible if ctx.obsolete(): reason = obsutil._getfilteredreason(unfilteredrepo, ctx) msg = _("hidden revision '%s' %s") % (changeid, reason)