##// 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
import sys
for line in sys.stdin:
if line.lower() in ("message-id: \n", "in-reply-to: \n"):
line = line[:-2]
print(line, end="")