tests/unwrap-message-id.py
author Matt Harbison <matt_harbison@yahoo.com>
Sat, 13 Mar 2021 02:07:34 -0500
branchstable
changeset 46792 7e08fa9b3d13
parent 44405 a1908951ca42
child 48875 6000f5b25c9b
permissions -rw-r--r--
typing: add assertions to localrepo.py to appease pytype Differential Revision: https://phab.mercurial-scm.org/D10214

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="")