# HG changeset patch # User Martin von Zweigbergk # Date 1513356448 28800 # Node ID 702e6d2642e7b51ab8b217cc0842018a08f6e243 # Parent e54f02ec6a0535cc8f595759727f4e1c3c8bcb38 debugdiscovery: correct and clean up command synopsis This does a few things: * Changes "-r" to "--rev", since "-r" is not a valid short form * Removes non-existent "-l" and "-b" options * Removes "..." after options, since we don't usually have that Differential Revision: https://phab.mercurial-scm.org/D1706 diff -r e54f02ec6a05 -r 702e6d2642e7 mercurial/debugcommands.py --- a/mercurial/debugcommands.py Thu Dec 14 00:25:03 2017 -0800 +++ b/mercurial/debugcommands.py Fri Dec 15 08:47:28 2017 -0800 @@ -740,7 +740,7 @@ _('use old-style discovery with non-heads included')), ('', 'rev', [], 'restrict discovery to this set of revs'), ] + cmdutil.remoteopts, - _('[-l REV] [-r REV] [-b BRANCH]... [OTHER]')) + _('[--rev REV] [OTHER]')) def debugdiscovery(ui, repo, remoteurl="default", **opts): """runs the changeset discovery protocol in isolation""" opts = pycompat.byteskwargs(opts)