##// END OF EJS Templates
debugcommands: introduce new debugrequirements command...
debugcommands: introduce new debugrequirements command This for now just prints out the list of current requirements. In future this will be helpful in reading requirements from couple of sources, and checking which requirement comes from where. Differential Revision: https://phab.mercurial-scm.org/D8632

File last commit:

r44885:a1908951 default
r45667:4a28f5e8 default
Show More
unwrap-message-id.py
8 lines | 202 B | text/x-python | PythonLexer
/ tests / unwrap-message-id.py
Denis Laxalde
tests: handle Message-Id email header possible wrapping...
r43642 from __future__ import absolute_import, print_function
import sys
Joerg Sonnenberger
tests: handle In-Reply-To headers for line wrapping...
r44885 for line in sys.stdin:
if line.lower() in ("message-id: \n", "in-reply-to: \n"):
line = line[:-2]
print(line, end="")