##// END OF EJS Templates
tests: conditionalize path output for in-memory pyoxidizer resources
tests: conditionalize path output for in-memory pyoxidizer resources

File last commit:

r49730:6000f5b2 default
r50730:4836705a stable
Show More
unwrap-message-id.py
6 lines | 146 B | text/x-python | PythonLexer
/ tests / unwrap-message-id.py
Denis Laxalde
tests: handle Message-Id email header possible wrapping...
r43642 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="")