Mercurial > public > mercurial-scm > hg
diff mercurial/dispatch.py @ 38788:a9ff2b0c11dd
dispatch: show a short error message when invalid global option given
Similar reasoning as the previous patch.
Differential Revision: https://phab.mercurial-scm.org/D4025
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 24 Jul 2018 10:47:42 -0700 |
parents | 5199c5b6fd29 |
children | 4019b4542e61 |
line wrap: on
line diff
--- a/mercurial/dispatch.py Tue Jul 24 10:22:07 2018 -0700 +++ b/mercurial/dispatch.py Tue Jul 24 10:47:42 2018 -0700 @@ -370,9 +370,8 @@ ui.warn(_("hg %s: %s\n") % (inst.args[0], msgbytes)) commands.help_(ui, inst.args[0], full=False, command=True) else: - ui.pager('help') ui.warn(_("hg: %s\n") % inst.args[1]) - commands.help_(ui, 'shortlist') + ui.warn(_("(use 'hg help -v' for a list of global options)\n")) except error.ParseError as inst: _formatparse(ui.warn, inst) return -1