view tests/unwrap-message-id.py @ 51532:a0ef462cf1a4

branchcache: filter obsolete revisions sooner Since we won't do anything with the obsolete revisions, we can just ignore them sooner.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 06 Mar 2024 15:54:22 +0100
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="")