view tests/unwrap-message-id.py @ 48828:40a65f5594f5

setup: inline encoding constant that is only used once This was variable back when we supported Python 2. Differential Revision: https://phab.mercurial-scm.org/D12272
author Augie Fackler <augie@google.com>
date Wed, 02 Mar 2022 10:11:37 -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="")