view tests/unwrap-message-id.py @ 48957:edab75a4c1da

hg: always import hgdemandimport The deleted if condition is always true now that we dropped Python 2 and 3.5. Differential Revision: https://phab.mercurial-scm.org/D12361
author Gregory Szorc <gregory.szorc@gmail.com>
date Tue, 08 Mar 2022 19:08:35 -0800
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="")