##// END OF EJS Templates
debugcommands: fix a missing b prefix...
Augie Fackler -
r39097:efeeb73f default
parent child Browse files
Show More
@@ -2721,7 +2721,7 b' def _parsewirelangblocks(fh):'
2721 2721 if line.startswith(b'#'):
2722 2722 continue
2723 2723
2724 if not line.startswith(' '):
2724 if not line.startswith(b' '):
2725 2725 # New block. Flush previous one.
2726 2726 if activeaction:
2727 2727 yield activeaction, blocklines
General Comments 0
You need to be logged in to leave comments. Login now