D4255: debugcommands: fix a missing b prefix

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Fri Aug 10 12:03:52 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGefeeb73f54c3: debugcommands: fix a missing b prefix (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D4255?vs=10307&id=10315

REVISION DETAIL
  https://phab.mercurial-scm.org/D4255

AFFECTED FILES
  mercurial/debugcommands.py

CHANGE DETAILS

diff --git a/mercurial/debugcommands.py b/mercurial/debugcommands.py
--- a/mercurial/debugcommands.py
+++ b/mercurial/debugcommands.py
@@ -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



To: durin42, #hg-reviewers, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list