Mercurial > hg
view tests/unwrap-message-id.py @ 50543:164b6c4878b8 stable
doc: format argument for date uses strftime format string (issue6818)
author | Joerg Sonnenberger <joerg@bec.de> |
---|---|
date | Wed, 31 May 2023 22:36:50 +0200 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
import sys for line in sys.stdin: if line.lower() in ("message-id: \n", "in-reply-to: \n"): line = line[:-2] print(line, end="")