comparison mercurial/debugcommands.py @ 46783:b6ac612445e0

debugdiscovery: add missing byte string marker to some help text This is causing crash when using --help. Differential Revision: https://phab.mercurial-scm.org/D10227
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 16 Mar 2021 09:41:01 +0100
parents 67a2ecea8bd9
children e2f7b2695ba1
comparison
equal deleted inserted replaced
46782:67a2ecea8bd9 46783:b6ac612445e0
987 (b'', b'rev', [], b'restrict discovery to this set of revs'), 987 (b'', b'rev', [], b'restrict discovery to this set of revs'),
988 (b'', b'seed', b'12323', b'specify the random seed use for discovery'), 988 (b'', b'seed', b'12323', b'specify the random seed use for discovery'),
989 ( 989 (
990 b'', 990 b'',
991 b'local-as-revs', 991 b'local-as-revs',
992 "", 992 b"",
993 'treat local has having these revisions only', 993 b'treat local has having these revisions only',
994 ), 994 ),
995 ( 995 (
996 b'', 996 b'',
997 b'remote-as-revs', 997 b'remote-as-revs',
998 "", 998 b"",
999 'use local as remote, with only these these revisions', 999 b'use local as remote, with only these these revisions',
1000 ), 1000 ),
1001 ] 1001 ]
1002 + cmdutil.remoteopts 1002 + cmdutil.remoteopts
1003 + cmdutil.formatteropts, 1003 + cmdutil.formatteropts,
1004 _(b'[--rev REV] [OTHER]'), 1004 _(b'[--rev REV] [OTHER]'),