##// END OF EJS Templates
merge default into stable for 5.4 release
merge default into stable for 5.4 release

File last commit:

r44885:a1908951 default
r45223:26ce8e75 merge 5.4rc0 stable
Show More
unwrap-message-id.py
8 lines | 202 B | text/x-python | PythonLexer
/ tests / unwrap-message-id.py
from __future__ import absolute_import, print_function
import sys
for line in sys.stdin:
if line.lower() in ("message-id: \n", "in-reply-to: \n"):
line = line[:-2]
print(line, end="")