view tests/unwrap-message-id.py @ 44932:03ba7de6a8b9

git: add coverage for manifest.diff() so we don't regress
author Augie Fackler <augie@google.com>
date Wed, 03 Jun 2020 11:28:57 -0400
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="")