# HG changeset patch # User Matt Mackall # Date 2011-11-06 20:40:31 # Node ID f3b5ba25d21787a9e4aa5fc243ecbafc9e978e00 # Parent ea5b346024e1b26482c07c804ccdb6e0313e48b4 log: hide hidden option until it actually does something diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -3721,7 +3721,7 @@ def locate(ui, repo, *pats, **opts): _('show changesets within the given named branch'), _('BRANCH')), ('P', 'prune', [], _('do not display revision or any of its ancestors'), _('REV')), - ('', 'hidden', False, _('show hidden changesets')), + ('', 'hidden', False, _('show hidden changesets (DEPRECATED)')), ] + logopts + walkopts, _('[OPTION]... [FILE]')) def log(ui, repo, *pats, **opts):