# HG changeset patch # User Pierre-Yves David # Date 2021-03-16 08:41:01 # Node ID b6ac612445e05909f0ca5542e08040b57e126c2a # Parent 67a2ecea8bd9dab2f28cb05b6c900de02eaf9837 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 diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -989,14 +989,14 @@ def debugstate(ui, repo, **opts): ( 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