view tests/unwrap-message-id.py @ 50460:1e31eda9c845

stabletailgraph: fix typo in test
author pacien <pacien.trangirard@pacien.net>
date Sun, 16 Apr 2023 22:49:42 +0200
parents 6000f5b25c9b
children
line wrap: on
line source

import sys

for line in sys.stdin:
    if line.lower() in ("message-id: \n", "in-reply-to: \n"):
        line = line[:-2]
    print(line, end="")