# HG changeset patch # User Augie Fackler # Date 2018-08-10 07:14:52 # Node ID efeeb73f54c3fcd316755740d3a253930ff3754b # Parent b3c6c194f33aaa2fab763b4dc8b235ab745d2aee debugcommands: fix a missing b prefix This wasn't causing any immediate problems because of the source transformer, but I noticed the inconsistency and it bugged me. # skip-blame just a b prefix Differential Revision: https://phab.mercurial-scm.org/D4255 diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py --- a/mercurial/debugcommands.py +++ b/mercurial/debugcommands.py @@ -2721,7 +2721,7 @@ def _parsewirelangblocks(fh): if line.startswith(b'#'): continue - if not line.startswith(' '): + if not line.startswith(b' '): # New block. Flush previous one. if activeaction: yield activeaction, blocklines