Mercurial > hg-stable
changeset 39099:efeeb73f54c3
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
author | Augie Fackler <augie@google.com> |
---|---|
date | Fri, 10 Aug 2018 03:14:52 -0400 |
parents | b3c6c194f33a |
children | 1419ba5e3b56 |
files | mercurial/debugcommands.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/debugcommands.py Fri Aug 10 02:31:44 2018 -0400 +++ b/mercurial/debugcommands.py Fri Aug 10 03:14:52 2018 -0400 @@ -2721,7 +2721,7 @@ if line.startswith(b'#'): continue - if not line.startswith(' '): + if not line.startswith(b' '): # New block. Flush previous one. if activeaction: yield activeaction, blocklines