Mercurial > hg
view tests/unwrap-message-id.py @ 45799:a3b1a6194ed9 stable
Added tag 5.6 for changeset 18c17d63fdab
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Mon, 02 Nov 2020 14:26:18 -0500 |
parents | a1908951ca42 |
children | 6000f5b25c9b |
line wrap: on
line source
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="")