view tests/unwrap-message-id.py @ 46141:41733a1c3532

cext: isolate hash size in the revlog handling in a single place Differential Revision: https://phab.mercurial-scm.org/D9450
author Joerg Sonnenberger <joerg@bec.de>
date Sat, 28 Nov 2020 22:27:12 +0100
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="")