view tests/unwrap-message-id.py @ 45248:4cde23ba076e

commitctx: create the new extra dict on its own line A trivial move to make the next changeset easier to read.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 25 Jul 2020 14:59:55 +0200
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="")