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
--- a/mercurial/debugcommands.py Mon Mar 15 17:09:42 2021 +0100
+++ b/mercurial/debugcommands.py Tue Mar 16 09:41:01 2021 +0100
@@ -989,14 +989,14 @@
(
b'',
b'local-as-revs',
- "",
- 'treat local has having these revisions only',
+ b"",
+ b'treat local has having these revisions only',
),
(
b'',
b'remote-as-revs',
- "",
- 'use local as remote, with only these these revisions',
+ b"",
+ b'use local as remote, with only these these revisions',
),
]
+ cmdutil.remoteopts