tests/unwrap-message-id.py
author Manuel Jacob <me@manueljacob.de>
Tue, 31 May 2022 02:19:07 +0200
changeset 49297 402f9f0f9387
parent 48875 6000f5b25c9b
permissions -rw-r--r--
tests: remove Python 2 special cases in test-stdio.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="")