view tests/unwrap-message-id.py @ 48591:f1162b125991

histedit: attempt to make merge labels more helpful Differential Revision: https://phab.mercurial-scm.org/D12023
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 21 Jan 2022 13:48:18 -0800
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="")