view tests/unwrap-message-id.py @ 52065:9e94f9dbbbe8

revlog: drop the CamelCase name for `revlog.revlogproblem` See 61557734c0ae for the reasoning.
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 23 Oct 2024 16:22:21 -0400
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="")