tests/unwrap-message-id.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Tue, 29 Oct 2019 11:07:25 +0100
branchstable
changeset 43348 daa3b58906d5
parent 43334 4128ffba4431
child 44405 a1908951ca42
permissions -rw-r--r--
formatting: drop `grey`, our custom black version Now that the official black has all we want, we can drop this.

from __future__ import absolute_import, print_function

import re
import sys

print(re.sub(r"(?<=Message-Id:) \n ", " ", sys.stdin.read()), end="")